diff --git a/Libs/DF/cooltip.lua b/Libs/DF/cooltip.lua index dd6ec05f..ea448528 100644 --- a/Libs/DF/cooltip.lua +++ b/Libs/DF/cooltip.lua @@ -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 diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua index 3d395456..22eab0cf 100644 --- a/Libs/DF/fw.lua +++ b/Libs/DF/fw.lua @@ -1,6 +1,6 @@ -local dversion = 338 +local dversion = 339 local major, minor = "DetailsFramework-1.0", dversion local DF, oldminor = LibStub:NewLibrary (major, minor)