Commit 198986ad authored by Ivaria's avatar Ivaria
Browse files

Re-enabled option for Monochrome font hint.

parent d79405be
......@@ -732,7 +732,7 @@ function VUHDO_customizeIconText(aParent, aHeight, aLabel, aSetup)
aLabel:ClearAllPoints();
aLabel:SetPoint(aSetup["ANCHOR"], aParent:GetName(), aSetup["ANCHOR"], tFactor * aSetup["X_ADJUST"], -tFactor * aSetup["Y_ADJUST"]);
tOutline = aSetup["USE_OUTLINE"] and "OUTLINE|" or "";
--tOutline = tOutline .. (aSetup["USE_MONO"] and "MONOCHROME" or ""); -- Bugs out in MoP beta
tOutline = tOutline .. (aSetup["USE_MONO"] and "MONOCHROME" or ""); -- Bugs out in MoP beta
tColor = aSetup["COLOR"];
if tColor then
......
......@@ -111,9 +111,9 @@ function VUHDO_lnfStandardFontUpdateDemoText()
tOutlineText = "";
end
--[[if (sTable["USE_MONO"]) then -- -- Bugs out in MoP beta
if (sTable["USE_MONO"]) then -- -- Bugs out in MoP beta
tOutlineText = tOutlineText .. "MONOCHROME";
end]]
end
tLabel:SetFont(sTable["FONT"], sTable["SCALE"] * 0.01 * 32, tOutlineText);
......@@ -129,4 +129,4 @@ function VUHDO_lnfStandardFontUpdateDemoText()
else
tLabel:SetTextColor(1, 1, 1, 1);
end
end
\ No newline at end of file
end
......@@ -81,9 +81,9 @@ function VUHDO_initLocalVars(aPanelNum)
sLifeFontHeight = sPanelSetup["PANEL_COLOR"]["TEXT"]["textSizeLife"];
sOutlineText = sPanelSetup["PANEL_COLOR"]["TEXT"]["outline"] and "OUTLINE|" or "";
--[[if (sPanelSetup["PANEL_COLOR"]["TEXT"]["USE_MONO"]) then -- Bugs out in MoP beta
if (sPanelSetup["PANEL_COLOR"]["TEXT"]["USE_MONO"]) then -- Bugs out in MoP beta
sOutlineText = sOutlineText .. "MONOCHROME";
end]]
end
sShadowAlpha = sPanelSetup["PANEL_COLOR"]["TEXT"]["USE_SHADOW"] and 1 or 0;
sBarHeight = VUHDO_getHealthBarHeight(aPanelNum);
......
......@@ -11,7 +11,6 @@ Known issues:
-- Bug in Blizzard API UnitGetIncomingHeals() - returns bogus values
-- Holy Priest spells derived from Chakra stance behave oddly as of 6.0.2
-- Stance specific spells must all use the spell name Holy Word: Chastise
-- Monochrome text hint is currently disabled due to a Blizzard bug
Bugfixes:
......@@ -21,6 +20,7 @@ Bugfixes:
-- Fixed localization bug when adding default custom debuffs by spell ID
-- Fixed muting of SFX and Error Speech when auto-firing spells/trinkets
-- Fixed smart cast for Holy Priest while in a Chakra stance
-- Re-enabled option for Monochrome font hint
Improvements:
......
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