This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Micro Menu bar disappears when in a battle ground AND in a vehicle. Upon exiting the vehicle (intermittently) the micromenu bar does not reload. Have to do a manual reload of ui to get it back. Also the #1 button on the vehicle bar does not work from time to time (unable to fire). The #2 button never fails if/when there's a function.
I've found that deleting my cache folder and .old files in WoW will correct the vehicle button issue for a short time, but unsure if it also corrects the disappearing micro menu bar.
Current Bartender4 version: 4.8.3
Forgot to add that I was having this issue prior to this version - ever since BfA release
This ever going to get fixed? been almost a year and nothing :(
seems like this issue never gets resolved
You can make the Micro Menu always visible by commenting out two lines of the MicroMenuMod:MicroMenuBarShow function on line 107 of the MicroMenu.lua file in the Bartender4 directory.
Current:
function MicroMenuMod:MicroMenuBarShow() -- Only "fix" button anchors if another frame that uses the MicroButtonBar isn't active. if not ((OverrideActionBar and OverrideActionBar:IsShown()) or (PetBattleFrame and PetBattleFrame:IsShown())) then UpdateMicroButtonsParent(self.bar) self.bar:UpdateButtonLayout() end end
Always On:
function MicroMenuMod:MicroMenuBarShow() -- Only "fix" button anchors if another frame that uses the MicroButtonBar isn't active. --if not ((OverrideActionBar and OverrideActionBar:IsShown()) or (PetBattleFrame and PetBattleFrame:IsShown())) then UpdateMicroButtonsParent(self.bar) self.bar:UpdateButtonLayout() --end end
To post a comment, please login or register a new account.