Micro Menu bar disappears #1485


Closed
  • caligirl0013 created this issue Jun 29, 2019

    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

  • xxcaligirlxx posted a comment Jun 29, 2019

    Forgot to add that I was having this issue prior to this version - ever since BfA release

  • Holy_Z posted a comment Jul 28, 2019

    This ever going to get fixed? been almost a year and nothing :(

  • Holy_Z posted a comment Jul 28, 2019

    This ever going to get fixed? been almost a year and nothing :(

  • Forge_User_28793006 posted a comment Aug 13, 2019

    seems like this issue never gets resolved

  • atoadaso227 posted a comment Aug 24, 2019

    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

     

  • nevcairiel closed issue Oct 8, 2019

To post a comment, please login or register a new account.