rursache / InFlight-TWW

InFlight Taxi Timer World of Warcraft Addon
12 stars 2 forks source link

Addon settings in Options screen are missing #6

Closed jgleigh closed 1 month ago

jgleigh commented 1 month ago

Open the InFlight section of addon settings and it's just a blank screen.

MrDarkflame commented 1 month ago

Was able to solve this by changing InFlight_Load.lua

local category = Settings.RegisterCanvasLayoutCategory(self, "InFlight")
Settings.RegisterAddOnCategory(category)

to

category, layout = Settings.RegisterCanvasLayoutCategory(panel, panel.name, panel.name)
category.ID = panel.name
Settings.RegisterAddOnCategory(category);
rursache commented 1 month ago

fixed in v11.0.2 https://github.com/rursache/InFlight-WW/releases/tag/v11.0.2