View Single Post
08-13-20, 12:31 PM   #12
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2010
Posts: 97
Issue fixed with this function
Lua Code:
  1. function ab:FixMBBR()
  2.     for i = 1, 6 do
  3.         local Button = _G['MultiBarBottomRightButton'..i]
  4.  
  5.         Button:SetAttribute('showgrid', 1)
  6.         Button.noGrid = nil
  7.         Button:ShowGrid(ACTION_BUTTON_SHOW_GRID_REASON_CVAR)
  8.         Button:Show()
  9.     end
  10. end

SetAttribute has caused an issue with MultiActionBars.lua from Blizzard. All buttons are set to nil, only buttons 1-6 of the MultiBarBottomRight are set to true. nil or false shows the grid and the button while true hides the button.

In the end, @humfras got me on it. Thanks for that
  Reply With Quote