Thread Tools Display Modes
10-13-22, 02:49 AM   #1
glupikreten
A Theradrim Guardian
Join Date: Apr 2009
Posts: 60
UI taint - wotlk

Hi,

Why putting this into lua at PLAYER_ENTERINg_WORLD/initiallogin taints UI... and it taints it when change stance in combat (warr, druid...)

Lua Code:
  1. SHOW_MULTI_ACTIONBAR_1 = 1
  2. SHOW_MULTI_ACTIONBAR_2 = 1
  3. SHOW_MULTI_ACTIONBAR_3 = 1
  4. SHOW_MULTI_ACTIONBAR_4 = 1
  5. InterfaceOptions_UpdateMultiActionBars()

Tried this too... same thing happens

Lua Code:
  1. SetActionBarToggles(1, 1, 1, 1, 1)
  2. local action_bars = {_G['InterfaceOptionsActionBarsPanelBottomLeft'], _G['InterfaceOptionsActionBarsPanelBottomRight'], _G['InterfaceOptionsActionBarsPanelRight'], _G['InterfaceOptionsActionBarsPanelRightTwo']}
  3. for i = 1, #action_bars do
  4.     action_bars[i]:SetChecked(1)
  5.     action_bars[i]:GetScript('OnClick')(action_bars[i])
  6. end
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » UI taint - wotlk


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off