View Single Post
12-02-12, 03:56 AM   #16
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,879
Did you get the problem fixed?

If not the I believe Seerah was saying that given the error you reported, it was most likely that kgPanel16 is being anchored to itself thus creating the circular call:

kgPanel16:SetParent(kgPanel16) would call:
kgPanel16:SetParent(kgPanel16) would call:
kgPanel16:SetParent(kgPanel16) would call:
kgPanel16:SetParent(kgPanel16) would call:
kgPanel16:SetParent(kgPanel16) would call:
... and so on. After 10,000 or so of these circular calls the lua interpreter gives up and sh*ts on your carpet .

Anchor kgPanel16 to another panel or UIParent and see what happens (adjusting X/Y coords accordingly).
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 12-02-12 at 04:57 AM.
  Reply With Quote