Skip to content

Commit

Permalink
Add support for text outline
Browse files Browse the repository at this point in the history
  • Loading branch information
wooferzfg committed Jun 2, 2017
1 parent 827ad0d commit cdcb037
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions UI/Components/CounterComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ private void DrawGeneral(Graphics g, Model.LiveSplitState state, float width, fl
CounterNameLabel.Brush = new SolidBrush(Settings.OverrideTextColor ? Settings.CounterTextColor : state.LayoutSettings.TextColor);
CounterNameLabel.HasShadow = state.LayoutSettings.DropShadows;
CounterNameLabel.ShadowColor = state.LayoutSettings.ShadowsColor;
CounterNameLabel.OutlineColor = state.LayoutSettings.TextOutlineColor;
CounterNameLabel.Draw(g);

// Set Counter Value Label.
Expand All @@ -120,6 +121,7 @@ private void DrawGeneral(Graphics g, Model.LiveSplitState state, float width, fl
CounterValueLabel.Brush = new SolidBrush(Settings.OverrideTextColor ? Settings.CounterValueColor : state.LayoutSettings.TextColor);
CounterValueLabel.HasShadow = state.LayoutSettings.DropShadows;
CounterValueLabel.ShadowColor = state.LayoutSettings.ShadowsColor;
CounterValueLabel.OutlineColor = state.LayoutSettings.TextOutlineColor;
CounterValueLabel.Draw(g);
}

Expand Down

0 comments on commit cdcb037

Please sign in to comment.