View Single Post
08-13-20, 08:44 PM   #13
siweia
A Flamescale Wyrmkin
 
siweia's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2011
Posts: 126
Originally Posted by liquidbase View Post
Tested and unfortunately no effects. The buttons 1-6 on the MultiBarBottomRight cannot currently be displayed if they are empty from the start.
This is weird. I use the code below in beta and it works perfectly fine.
Lua Code:
  1. local function buttonShowGrid(name, showgrid)
  2.     for i = 1, 12 do
  3.         local button = _G[name..i]
  4.         button:SetAttribute("showgrid", showgrid)
  5.         button:ShowGrid(ACTION_BUTTON_SHOW_GRID_REASON_CVAR)
  6.     end
  7. end

See here.
  Reply With Quote