View Single Post
04-11-11, 04:34 AM   #8
Nibelheim
local roygbi-
 
Nibelheim's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 1,600
Originally Posted by Lily.Petal View Post
You're like half the reason my UI is working correctly/as intended xD <3

PS: Drink much coffee lol? I did one RL and you have like 4 PSSSSSSSS

Code:
/run print(DurabilityFrame:GetPoint())
Got me:
Code:
TOPRIGHT table: 1EFFBBA0 BOTTOMRIGHT -0 0
Time to see if this works
Just don't use "table: 1EFFBBA0" in the code. :P Best to leave the Parent field as nil for now.


Actually, noticed a small bug. In Core.lua, change the line:

Code:
p = t.parent and _G[t.parent] or UIParent
to

Code:
p = t.parent and _G[t.parent] or f:GetParent()

Last edited by Nibelheim : 04-11-11 at 04:36 AM.
  Reply With Quote