View Single Post
04-30-23, 09:42 PM   #2
briskman3000
A Flamescale Wyrmkin
 
briskman3000's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 108
In your SetPoint calls, you need to add the parent panel variable to anchor it to.

Since you are using the variable "panel"

for example:
Lua Code:
  1. title:SetPoint("TOP")

should really be

Lua Code:
  1. title:SetPoint("TOP", panel)

Also move the

Lua Code:
  1. InterfaceOptions_AddCategory(panel)

to the bottom of all of your panel code
__________________
My Addons: Convert Ratings Honor Track

Last edited by briskman3000 : 04-30-23 at 09:45 PM.
  Reply With Quote