Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp fix for addon options not showing 11.0 #6

Open
bubfeeld opened this issue Aug 11, 2024 · 2 comments
Open

Temp fix for addon options not showing 11.0 #6

bubfeeld opened this issue Aug 11, 2024 · 2 comments

Comments

@bubfeeld
Copy link

I was getting an error ‘InterfaceOptions_AddCategory’ (a nil value),

I did some digging, found a post about another addon with the same issue

https://us.forums.blizzard.com/en/wow/t/zelda-loot-addon-wont-show/1900489/4

and thanks to the guys there i was able to cobble together changes that seems to have fixed the issue:

I added this line to line #13 in the Options.lua file:

13--local category, layout

and then I remarked out the following at line #266, or you could just delete it

--InterfaceOptions_AddCategory(Options)

and then right under that i added this code block:

category, layout = Settings.RegisterCanvasLayoutCategory(Options, Options.name, Options.name);
category.ID = Options.name
Settings.RegisterAddOnCategory(category);

@bubfeeld
Copy link
Author

course now, a new problem, it somehow stopped working on the quest objective tracker window

@loyew
Copy link

loyew commented Aug 14, 2024

Thank you., I'm using the basic PhanxFont addon, not the github one, and yes, quest tab is small, I am getting this lua error for 13, what am I doing wrong please?

`Message: Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'
Time: Wed Aug 14 12:34:34 2024
Count: 1
Stack: Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'

Message: Interface/AddOns/PhanxFont/Options.lua:1 Interface/AddOns/PhanxFont/Options.lua:14: unexpected symbol near '13'
Time: Wed Aug 14 12:38:23 2024`

"local ADDON, Addon = ...

13--local category, layout

local L = setmetatable({}, {"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants