Framework Update

This commit is contained in:
Tercio Jose
2023-12-04 20:45:16 -03:00
parent 3b91363fd9
commit 6abc2cc879
5 changed files with 50 additions and 20 deletions
+3 -2
View File
@@ -1,6 +1,6 @@
local dversion = 485
local dversion = 490
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary(major, minor)
@@ -1329,7 +1329,7 @@ function DF:SetFontOutline(fontString, outline)
outline = "OUTLINE"
elseif (type(outline) == "boolean" and not outline) then
outline = "NONE"
outline = "" --"NONE"
elseif (outline == 1) then
outline = "OUTLINE"
@@ -1338,6 +1338,7 @@ function DF:SetFontOutline(fontString, outline)
outline = "THICKOUTLINE"
end
end
outline = (not outline or outline == "NONE") and "" or outline
fontString:SetFont(font, fontSize, outline)
end