View Single Post
08-11-20, 05:52 AM   #1
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2010
Posts: 97
Problem with actionbar grid on beta

Hi @all!

Currently I have a problem with the action bars in the beta. You can see more details on the screenshot.



If there are no skills / macros in the bar, the action button 1 - 6 is not displayed. For this I have a few lines of code that is triggered at PLAYER_ENTERING_WORLD but does not solve the problem.
Lua Code:
  1. elseif event == 'PLAYER_ENTERING_WORLD' then
  2.         for i = 1, 6 do
  3.             local Button = _G['MultiBarBottomRightButton'..i]
  4.  
  5.             Button:SetAttribute('showgrid', 1)
  6.             Button:Show()
  7.         end
  8.     end

Perhaps does one of you have an idea why this could be?
  Reply With Quote