BasicMinimap

BasicMinimap

701k Downloads

Missions (Garrison/Covenant) button position gets overwritten by Blizzard in Shadowlands

0xjc opened this issue ยท 0 comments

commented

The GarrisonLandingPageMinimapButton button (called "Missions" button in the config; in SL this is the Covenant Sanctum button) in 9.0 gets delayed SetPoint calls by Blizzard and reverts to a hardcoded anchor. As a result it doesn't appear in the correct place.

Offending FrameXML code:

Workaround is to post-hook GarrisonLandingPageMinimapButton_UpdateIcon to force it back:

hooksecurefunc("GarrisonLandingPageMinimapButton_UpdateIcon", function(self)
        self:ClearAllPoints()
        self:SetPoint(...)
end)