Skip to content

Commit

Permalink
decrease "new" category label size
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanzilla committed Aug 27, 2018
1 parent e218a65 commit cb96f59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WeakAurasOptions/OptionsFrames/OptionsFrame.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit cb96f59

Please sign in to comment.