Skip to content

Commit 03c5911

Browse files
committed
Changed how game menu button is added to account for changes on blizz end
1 parent 9f17ae8 commit 03c5911

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

ElvUI/Core/General/API.lua

+21-9
Original file line numberDiff line numberDiff line change
@@ -769,16 +769,29 @@ function E:ClickGameMenu()
769769
end
770770
end
771771

772+
GameMenuFrame.ElvUIButtons = {} --Table for keeping game menu buttons frome ElvUI itself and plugins
772773
function E:SetupGameMenu()
773-
local button = CreateFrame('Button', nil, GameMenuFrame, 'GameMenuButtonTemplate')
774-
button:SetScript('OnClick', E.ClickGameMenu)
775-
GameMenuFrame.ElvUI = button
774+
local dataTable = {
775+
text = format('%sElvUI|r', E.media.hexvaluecolor),
776+
callback = E.ClickGameMenu,
777+
disabled = false --If set to true will make button disabled. Can be set as a fucn to return true/false dynamically if needed
778+
}
779+
tinsert(GameMenuFrame.ElvUIButtons, dataTable) --Add ElvUI's button so it will be first
776780

777781
if not E:IsAddOnEnabled('ConsolePortUI_Menu') then
778-
button:Size(100, 30)
779-
button:Point('TOPLEFT', GameMenuFrame, 'BOTTOMLEFT', 0, -1)
780-
-- FIX ME 11.0
781-
--hooksecurefunc('GameMenuFrame_UpdateVisibleButtons', E.PositionGameMenuButton)
782+
--hooking to blizz button add function for game menu, since the list of those is reset every time menu is opened
783+
hooksecurefunc(GameMenuFrame, "AddButton",
784+
function(self, text, callback, disabled)
785+
if text == MACROS then --check for text "Macros". That button is the last before logout in default so we insert our stuff in between
786+
GameMenuFrame:AddSection(); --spacer
787+
788+
for i = 1, #GameMenuFrame.ElvUIButtons do --Go through buttons in the tabe and adding them based on data provided
789+
local data = GameMenuFrame.ElvUIButtons[i]
790+
if i == 1 then data.text = format('%sElvUI|r', E.media.hexvaluecolor) end --to account for ElvUI value color change
791+
GameMenuFrame:AddButton(data.text, data.callback, data.disabled);
792+
end
793+
end
794+
end)
782795
end
783796
end
784797

@@ -905,8 +918,7 @@ function E:LoadAPI()
905918
E:RegisterEvent('PLAYER_REGEN_DISABLED')
906919
E:RegisterEvent('UI_SCALE_CHANGED', 'PixelScaleChanged')
907920

908-
-- FIX ME 11.0
909-
--E:SetupGameMenu()
921+
E:SetupGameMenu()
910922

911923
if E.Retail then
912924
for _, mountID in next, C_MountJournal_GetMountIDs() do

0 commit comments

Comments
 (0)