View Single Post
12-26-09, 01:55 PM   #3
eddiemars
A Cyclonian
 
eddiemars's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 43
in oUF_Nivaya.lua :
Code:
	self.Power:SetPoint("LEFT")
	self.Power:SetPoint("RIGHT")
	self.Power:SetPoint("TOP", self.Health, "BOTTOM", 0, -1)
My instincts tell me that the "self.Health" beside "TOP" might have something to do with anchoring the mana to health. I mentioned in my first post something I tried but I actually did notice this section before and I tried out this:
Code:
	self.Power:SetPoint("LEFT", 5)
	self.Power:SetPoint("RIGHT")
	self.Power:SetPoint("TOP", 5, "BOTTOM", 0, -1)
Just to see what happened but nothing did. Any Suggestions?
  Reply With Quote