- Fixed ticket #47: Title bar font resets with UI reload / relog.
- Fixed ticket #46: Icon select panel wasn't opening. - Fixed ticket #45: Windwalker icon for Mistweaver monks. - Fixed title bar text changing its font after logon.
This commit is contained in:
@@ -593,8 +593,8 @@ local default_profile = {
|
||||
[64] = {256/512, 320/512, 64/512, 128/512}, --> mage frost
|
||||
|
||||
[268] = {320/512, 384/512, 64/512, 128/512}, --> monk bm
|
||||
[269] = {384/512, 448/512, 64/512, 128/512}, --> monk mw
|
||||
[270] = {448/512, 512/512, 64/512, 128/512}, --> monk ww
|
||||
[269] = {448/512, 512/512, 64/512, 128/512}, --> monk ww
|
||||
[270] = {384/512, 448/512, 64/512, 128/512}, --> monk mw
|
||||
|
||||
[65] = {0, 64/512, 128/512, 192/512}, --> paladin holy
|
||||
[66] = {64/512, 128/512, 128/512, 192/512}, --> paladin protect
|
||||
|
||||
+19
-19
@@ -146,27 +146,27 @@ do
|
||||
[115181] = 268, -- Breath of Fire
|
||||
[121253] = 268, -- Keg Smash
|
||||
[115180] = 268, -- Dizzying Haze
|
||||
|
||||
-- Windwalker Monk:
|
||||
[152175] = 269, -- Hurricane Strike
|
||||
[116095] = 269, -- Disable
|
||||
[122470] = 269, -- Touch of Karma
|
||||
[124280] = 269, -- Touch of Karma
|
||||
[128595] = 269, -- Combat Conditioning
|
||||
[101545] = 269, -- Flying Serpent Kick
|
||||
[113656] = 269, -- Fists of Fury
|
||||
[117418] = 269, -- Fists of Fury
|
||||
|
||||
-- Mistweaver Monk:
|
||||
[115310] = 269, -- Revival
|
||||
[116680] = 269, -- Thunder Focus Tea
|
||||
[115460] = 269, -- Detonate Chi
|
||||
[116670] = 269, -- Uplift
|
||||
[115294] = 269, -- Mana Tea
|
||||
[116849] = 269, -- Life Cocoon
|
||||
[115151] = 269, -- Renewing Mist
|
||||
[124682] = 269, -- Enveloping Mist
|
||||
[115175] = 269, -- Soothing Mist
|
||||
|
||||
-- Windwalker Monk:
|
||||
[152175] = 270, -- Hurricane Strike
|
||||
[116095] = 270, -- Disable
|
||||
[122470] = 270, -- Touch of Karma
|
||||
[124280] = 270, -- Touch of Karma
|
||||
[128595] = 270, -- Combat Conditioning
|
||||
[101545] = 270, -- Flying Serpent Kick
|
||||
[113656] = 270, -- Fists of Fury
|
||||
[117418] = 270, -- Fists of Fury
|
||||
[115310] = 270, -- Revival
|
||||
[116680] = 270, -- Thunder Focus Tea
|
||||
[115460] = 270, -- Detonate Chi
|
||||
[116670] = 270, -- Uplift
|
||||
[115294] = 270, -- Mana Tea
|
||||
[116849] = 270, -- Life Cocoon
|
||||
[115151] = 270, -- Renewing Mist
|
||||
[124682] = 270, -- Enveloping Mist
|
||||
[115175] = 270, -- Soothing Mist
|
||||
|
||||
-- Holy Paladin:
|
||||
[156910] = 65, -- Beacon of Faith
|
||||
|
||||
+20
-1
@@ -170,7 +170,15 @@ function _G._detalhes:Start()
|
||||
end
|
||||
end
|
||||
|
||||
_detalhes.ToolBar:ReorganizeIcons() --> refresh all skin
|
||||
--> refresh lower instance plugin icons and skin
|
||||
_detalhes.ToolBar:ReorganizeIcons()
|
||||
--> refresh skin for other windows
|
||||
for i = lower_instance+1, #self.tabela_instancias do
|
||||
local instance = self:GetInstance (i)
|
||||
if (instance and instance.baseframe and instance.ativa) then
|
||||
instance:ChangeSkin()
|
||||
end
|
||||
end
|
||||
|
||||
self.RefreshAfterStartup = nil
|
||||
|
||||
@@ -355,6 +363,17 @@ function _G._detalhes:Start()
|
||||
_detalhes:AddDefaultCustomDisplays()
|
||||
|
||||
--> erase the custom for damage taken by spell
|
||||
if (_detalhes_database.last_realversion and _detalhes_database.last_realversion < 74 and enable_reset_warning) then
|
||||
function _detalhes:FixMonkSpecIcons()
|
||||
local m269 = _detalhes.class_specs_coords [269]
|
||||
local m270 = _detalhes.class_specs_coords [270]
|
||||
|
||||
m269[1], m269[2], m269[3], m269[4] = 448/512, 512/512, 64/512, 128/512
|
||||
m270[1], m270[2], m270[3], m270[4] = 384/512, 448/512, 64/512, 128/512
|
||||
end
|
||||
_detalhes:ScheduleTimer ("FixMonkSpecIcons", 1)
|
||||
end
|
||||
|
||||
if (_detalhes_database.last_realversion and _detalhes_database.last_realversion < 73 and enable_reset_warning) then
|
||||
|
||||
local secure_func = function()
|
||||
|
||||
Reference in New Issue
Block a user