View Single Post
10-05-13, 10:39 PM   #8
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
hmm, realised I never did actually move my pet bar from the center of the screen like you have so just tried that and voila .. can see what you are seeing.

edit:
I see where the problem is - around line 823 of the movers.lua file :
Lua Code:
  1. if ( PetBattleFrame ) then
  2.     if ( PetBattleFrame.TopFrame ~= nil ) then
  3.         PetBattleFrame.TopFrame:SetPoint("TOP",nUI_TopBars, "BOTTOM",0,0)
  4.     end
  5.     if ( PetBattleFrame.BottomFrame ~= nil ) then
  6.         PetBattleFrame.BottomFrame:SetPoint("BOTTOM", nUI_SpecialBars, "TOP", 0, 0 );
  7.     end
  8.     --PetBattleFrame:SetScale(nUI.hScale)
  9. end

But as I suspected, there is no way to make movers for the top and bottom sections separately. That was why I added that code in to layer the Bottom Frame above Special Bar frame .. maybe it should be changed to the nUI_Dashboard as that is less likely to be moved.

Yep, looks promising ..
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_100613_055153.jpg
Views:	401
Size:	1.20 MB
ID:	7880  
__________________


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 : 10-05-13 at 10:53 PM.