WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Help/Support (https://www.wowinterface.com/forums/forumdisplay.php?f=3)
-   -   Roth UI + Titan Panel (https://www.wowinterface.com/forums/showthread.php?t=42248)

MasterLomaster 12-30-11 07:17 PM

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

zork 12-30-11 08:21 PM

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")

MasterLomaster 12-30-11 08:46 PM

Please say me : What should I do with this code?

MasterLomaster 12-30-11 09:28 PM

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!


All times are GMT -6. The time now is 09:15 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI