- Added Shaman's Ancestral Guidance on cooldowns list.

- Added a profile selection screen when Details! are running for the first time on a character.
- Added Menu Text Size option over miscellaneous section on options panel.
This commit is contained in:
tercio
2014-08-08 17:24:44 -03:00
parent 3c3d840b65
commit 688fb10a7b
8 changed files with 166 additions and 59 deletions
+10 -2
View File
@@ -421,7 +421,11 @@ function DropDownMetaFunctions:Selected (_table)
end
if (_table.iconcolor) then
self.icon:SetVertexColor (unpack (_table.iconcolor))
if (type (_table.iconcolor) == "string") then
self.icon:SetVertexColor (gump:ParseColors (_table.iconcolor))
else
self.icon:SetVertexColor (unpack (_table.iconcolor))
end
else
self.icon:SetVertexColor (1, 1, 1, 1)
end
@@ -593,7 +597,11 @@ function DetailsDropDownOnMouseDown (button)
end
if (_table.iconcolor) then
_this_row.icon:SetVertexColor (unpack (_table.iconcolor))
if (type (_table.iconcolor) == "string") then
_this_row.icon:SetVertexColor (gump:ParseColors (_table.iconcolor))
else
_this_row.icon:SetVertexColor (unpack (_table.iconcolor))
end
else
_this_row.icon:SetVertexColor (1, 1, 1, 1)
end