Skip to content

Commit

Permalink
Fix another area using the old options system (closes #105)
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Aug 13, 2024
1 parent 64bcd16 commit adb48ef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,12 @@ local function createBugSack()
return
end
window:Hide()
InterfaceOptionsFrame_OpenToCategory(addonName)
if InterfaceOptionsFrame_OpenToCategory then
InterfaceOptionsFrame_OpenToCategory(addonName)
InterfaceOptionsFrame_OpenToCategory(addonName)
else
Settings.OpenToCategory(addon.settingsCategory.ID)
end
end)
local quickTips = L["quickTipsDesc"]
sessionLabel:SetScript("OnEnter", function(self)
Expand Down

0 comments on commit adb48ef

Please sign in to comment.