View Single Post
07-26-18, 07:50 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
I had the same problem with nUI as it moves the minimap from the top corner and recreates the action bars in another location.

The only solution to the problem I could find was to turn off the show right action bars options in the game menu. Because these two button bars are connected to the minimap and any adjustment to the minimap will affect its connected frames.

This works for nUI as we reuse those buttons elsewhere. I did try automatically turning off those options in code but no joy.

I believe the following relates to those options but adjusting those values in nUI didn't help.

https://www.townlong-yak.com/framexm...Controller.lua
Lua Code:
  1. if ( SHOW_MULTI_ACTIONBAR_3 ) then
  2.         BeginActionBarTransition(MultiBarRight, nil);
  3.       end
  4.       if ( SHOW_MULTI_ACTIONBAR_4 ) then
  5.         BeginActionBarTransition(MultiBarLeft, nil);
  6.       end
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote