Commit dcb7be41 authored by Ivaria's avatar Ivaria
Browse files

Blizzard fixed the font drop shadows on their end finally

parent 75c71935
......@@ -747,9 +747,7 @@ function VUHDO_customizeIconText(aParent, aHeight, aLabel, aSetup)
aLabel:SetFont(aSetup["FONT"], tFactor * aSetup["SCALE"], tOutline);
-- patch 7.1 introduced a bug with shadow offset scaling by resolution
-- hardcode the offset to -3 for now which should be the equiv of -1 @ 1920x1080
aLabel:SetShadowOffset(1, -3);
aLabel:SetShadowOffset(1, -1);
aLabel:SetText("");
end
......
......@@ -123,9 +123,7 @@ function VUHDO_lnfStandardFontUpdateDemoText()
tLabel:SetShadowColor(0, 0, 0, tShadowAlpha);
end
-- patch 7.1 introduced a bug with shadow offset scaling by resolution
-- hardcode the offset to -3 for now which should be the equiv of -1 @ 1920x1080
tLabel:SetShadowOffset(1, -3);
tLabel:SetShadowOffset(1, -1);
if (sTable["COLOR"] ~= nil) then
tLabel:SetTextColor(VUHDO_textColor(sTable["COLOR"]));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment