From cb96f590fb456976f579297a6b336a2f1384e0ba Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Mon, 27 Aug 2018 16:37:53 +0200 Subject: [PATCH] decrease "new" category label size --- WeakAurasOptions/OptionsFrames/OptionsFrame.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index ebe06607e1..fca8aed16a 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -683,7 +683,7 @@ function WeakAuras.CreateFrame() if(GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0) then local simpleLabel = AceGUI:Create("Label"); - simpleLabel:SetFont(STANDARD_TEXT_FONT, 36, "OUTLINE"); + simpleLabel:SetFont(STANDARD_TEXT_FONT, 24, "OUTLINE"); simpleLabel:SetColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b); simpleLabel:SetText(L["Simple"]); simpleLabel:SetFullWidth(true) @@ -703,7 +703,7 @@ function WeakAuras.CreateFrame() containerScroll:AddChild(spacer1Label) local advancedLabel = AceGUI:Create("Label"); - advancedLabel:SetFont(STANDARD_TEXT_FONT, 36, "OUTLINE"); + advancedLabel:SetFont(STANDARD_TEXT_FONT, 24, "OUTLINE"); advancedLabel:SetColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b); advancedLabel:SetText(L["Advanced"]); advancedLabel:SetFullWidth(true) @@ -737,7 +737,7 @@ function WeakAuras.CreateFrame() containerScroll:AddChild(spacer2Label) local externalLabel = AceGUI:Create("Label"); - externalLabel:SetFont(STANDARD_TEXT_FONT, 36, "OUTLINE"); + externalLabel:SetFont(STANDARD_TEXT_FONT, 24, "OUTLINE"); externalLabel:SetColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b); externalLabel:SetText(L["External"]); externalLabel:SetFullWidth(true)