Skip to content

Commit

Permalink
10.2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arnvid committed Jun 24, 2024
1 parent 3346d6b commit b83e140
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Skin/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ eventFrame:SetScript("OnEvent", function(self, event, addonName)
-- Setup function for the host addon
private.OnLoad()
private.UpdateUIScale()
if not (tonumber(_G.GetCVar("questTextContrast")) == 4) then
if (tonumber(_G.GetCVar("questTextContrast")) ~= 4) then
_G.SetCVar("questTextContrast", 4);
end

Expand Down
3 changes: 2 additions & 1 deletion gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ end
-- create frames/widgets
local gui = _G.CreateFrame("Frame", "AuroraOptions", _G.UIParent)
-- gui.name = "Aurora"
local category = category or _G.Settings.GetCategory("Aurora");
-- local category = category or _G.Settings.GetCategory("Aurora");
_G.Settings.GetCategory("Aurora");
-- local subcategory, layout = _G.Settings.RegisterCanvasLayoutSubcategory(category, gui, "AuroraOptions");

local title = gui:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge")
Expand Down

0 comments on commit b83e140

Please sign in to comment.