Dragonflight UI Classic

Dragonflight UI Classic

117k Downloads

Allow moving the micro menu

psykzz opened this issue ยท 2 comments

commented

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
image

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

https://wago.io/MWsYwik1v


After screenshot

image

commented

Should be in the next version; will work on it in the next few days.

commented

Feature completed for v0.7