View Single Post
06-22-13, 03:08 PM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,919
Wow, I am so sorry. Despite not playing wow regularly for a long while I did forget about this problem when I did start logging in a couple of times a week. Next time I do a toon swap I'll take a look at it.


Okay, thought I better do it now before I forget and while I was logged in

Looks like its a problem with the layout files. There is a slight difference with how the labels are positioned in the party+ frames than the solo one.

Try changing the relevant ( nUI_UnitSkin_Raid10Pet.lua ) file ( change Raid10 to Raid25 or Party etc ) and change the first label element block that says :

Code:
					label =
					{
						enabled     = true,
						fontsize    = 11,
						justifyH    = "LEFT",
						justifyV    = "MIDDLE",
						anchor_pt   = "LEFT",
						relative_to = "$parent_Label1",
						relative_pt = "RIGHT",
						xOfs        = 33,
						yOfs        = -5,					
						color       = { r = 1, g = 0.83, b = 0, a = 1 },
					},
to this

Code:
					label =
					{
						enabled     = true,
						fontsize    = 11,
						justifyH    = "LEFT",
						justifyV    = "MIDDLE",
						anchor_pt   = "TOP",
						relative_to = "$parent_Label1",
						relative_pt = "TOP",
						xOfs        = 33,
						yOfs        = -5,					
						color       = { r = 1, g = 0.83, b = 0, a = 1 },
					},
Basically you are changing the positioning of the label text in the pet frames label frame.

The screenshot attached shows it working now for my hunter when in the raid10 display layout.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_062213_222625.jpg
Views:	434
Size:	344.0 KB
ID:	7776  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 06-22-13 at 03:29 PM.