- Fixed a bug when bars isn't using class colors on Frags, Auras & Void Zones, Resources and Deaths.

- Fixed bar animations when 'Sort Direction' is set to bottom.
- Fixed combat on garrison training dummies which was being marked as Trash Segment.
- Fixed the spam 'you are not in a guild' when checking for new versions.
- Fixed translations for Auto Hide Settings bracket under options panel.
- Fixed Auto Hide -> Mouse Interaction tool where wans't able to work okey during combat.
This commit is contained in:
Tercio
2015-01-03 12:19:48 -02:00
parent c1a70256f8
commit 8b0c893bde
10 changed files with 114 additions and 68 deletions
+8 -1
View File
@@ -472,7 +472,14 @@ function atributo_misc:DeadAtualizarBarra (morte, qual_barra, colocacao, instanc
if (esta_barra.hidden or esta_barra.fading_in or esta_barra.faded) then
gump:Fade (esta_barra, "out")
end
esta_barra.textura:SetVertexColor (_unpack (_detalhes.class_colors [morte[4]]))
if (instancia.row_info.texture_class_colors) then
esta_barra.textura:SetVertexColor (_unpack (_detalhes.class_colors [morte[4]]))
end
if (instancia.row_info.texture_background_class_color) then
esta_barra.background:SetVertexColor (_unpack (_detalhes.class_colors [morte[4]]))
end
esta_barra.icone_classe:SetTexture (instancia.row_info.icon_file)
esta_barra.icone_classe:SetTexCoord (_unpack (CLASS_ICON_TCOORDS [morte[4]]))