Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/LiveSplit.Splits/UI/Components/LabelsComponent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
Expand All @@ -9,6 +9,7 @@

namespace LiveSplit.UI.Components;

[GlobalFontConsumer(GlobalFont.TextFont)]
public class LabelsComponent : IComponent
{
public SplitsSettings Settings { get; set; }
Expand Down
3 changes: 2 additions & 1 deletion src/LiveSplit.Splits/UI/Components/SplitComponent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
Expand All @@ -11,6 +11,7 @@

namespace LiveSplit.UI.Components;

[GlobalFontConsumer(GlobalFont.TimesFont | GlobalFont.TextFont)]
public class SplitComponent : IComponent
{
public ISegment Split { get; set; }
Expand Down
3 changes: 2 additions & 1 deletion src/LiveSplit.Splits/UI/Components/SplitsComponent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
Expand All @@ -10,6 +10,7 @@

namespace LiveSplit.UI.Components;

[GlobalFontConsumer(GlobalFont.TimesFont)]
public class SplitsComponent : IComponent
{
public ComponentRendererComponent InternalComponent { get; protected set; }
Expand Down