Allow moving the micro menu
psykzz opened this issue ยท 2 comments
Currently the micromenu and the bag button have no options.
Ideally I'd love to move and / or hide either menu.
Example of it just stuck to the bottom right
For now this is possible to remove via a weakaura just looping the elements
-- Create an array of elements
local elements = {
-- Buttons
CharacterMicroButton,
SpellbookMicroButton,
TalentMicroButton,
QuestLogMicroButton,
SocialsMicroButton,
WorldMapMicroButton,
LFGMicroButton,
MainMenuMicroButton,
HelpMicroButton,
-- Bags
MainMenuBarBackpackButton,
CharacterBag0Slot,
CharacterBag1Slot,
CharacterBag2Slot,
CharacterBag3Slot,
KeyRingButton,
DragonflightUIBagToggleFrame, -- Extra frame
}
-- Loop each element hook and hide it
for _, element in pairs(elements) do
hooksecurefunc(element, "Show", function()
element:Hide()
end)
element:Hide()
end
After screenshot