Thread Tools Display Modes
12-30-11, 07:17 PM   #1
MasterLomaster
A Defias Bandit
Join Date: Dec 2011
Posts: 3
Roth UI + Titan Panel

Sorry for my bad English (сам из России)
I hava a trouble :
when i use Roth UI + Titan Panel my buffs disappear
this with deleted WTF
  Reply With Quote
12-30-11, 08:21 PM   #2
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
Titanpanel and rBuffFrameStyler both move Blizzard frames. There is no way to disable that in TitanPanel other then using

lua Code:
  1. --frames to disable titan panel moving for
  2.   local titanPanelDisable = {
  3.     "PlayerFrame",
  4.     "TargetFrame",
  5.     "PartyMemberFrame1",
  6.     "TicketStatusFrame",
  7.     "TemporaryEnchantFrame",
  8.     "ConsolidatedBuffs",
  9.     "BuffFrame",
  10.     "MinimapCluster",
  11.     "WorldStateAlwaysUpFrame",
  12.     "MainMenuBar",
  13.     "MultiBarRight",
  14.     "VehicleMenuBar",
  15.     "BonusActionBarFrame",
  16.   }
  17.  
  18.   --init
  19.   local init = function(self)
  20.     if IsAddOnLoaded("Titan") then
  21.       for index, value in pairs(titanPanelDisable) do
  22.         TitanUtils_AddonAdjust(value, true)
  23.       end
  24.     end
  25.   end
  26.  
  27.   --register call
  28.   local a = CreateFrame("Frame")
  29.   a:SetScript("OnEvent", init)
  30.   a:RegisterEvent("PLAYER_LOGIN")
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
  Reply With Quote
12-30-11, 08:46 PM   #3
MasterLomaster
A Defias Bandit
Join Date: Dec 2011
Posts: 3
Please say me : What should I do with this code?

Last edited by MasterLomaster : 12-30-11 at 09:08 PM.
  Reply With Quote
12-30-11, 09:28 PM   #4
MasterLomaster
A Defias Bandit
Join Date: Dec 2011
Posts: 3
I put this code to the end of TitanConfig.lua and now all OK (sorry fo bad English)If something is wrong please write about it!
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Roth UI + Titan Panel


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