Fixes (9)

This commit is contained in:
Tercio Jose
2022-09-01 20:54:06 -03:00
parent a1ee5d1ef2
commit dfde3d5dbc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -939,12 +939,12 @@ function DF:CreateCoolTip()
if (r == 0 and g == 0 and b == 0 and a == 0) then
if (CoolTip.OptionsTable.TextColor) then
r, g, b, a = DF:ParseColors (CoolTip.OptionsTable.TextColor)
menuButton.leftText:SetTextColor (r, g, b, a)
DF:SetFontColor(menuButton.leftText, r, g, b, a)
else
menuButton.leftText:SetTextColor (1, 1, 1, 1)
end
else
menuButton.leftText:SetTextColor (r, g, b, a)
DF:SetFontColor(menuButton.leftText, r, g, b, a)
end
if (CoolTip.OptionsTable.TextSize and not leftTextTable [6]) then
+1 -1
View File
@@ -1,6 +1,6 @@
local dversion = 338
local dversion = 339
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary (major, minor)