Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions EllesmereUI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6590,6 +6590,12 @@ initFrame:SetScript("OnEvent", function(self, event)

local _gameMenuBaseHeight = nil
hooksecurefunc(GameMenuFrame, "Layout", function()
if InCombatLockdown() then
btn:Hide()
return
end
btn:Show()

local eg = ELLESMERE_GREEN
local hex = string.format("|cff%02x%02x%02x", (eg.r or 0.05) * 255, (eg.g or 0.82) * 255, (eg.b or 0.62) * 255)
btn:SetText(hex .. "Ellesmere|r|cffffffff" .. "UI|r")
Expand Down