From a02c5a6a36e9f41d5d150aec17c4616e54861501 Mon Sep 17 00:00:00 2001 From: Soar Qin Date: Sun, 5 Apr 2026 13:55:41 +0800 Subject: [PATCH] Add GlobalFontConsumer attribute for per-component font override support Declare which global fonts (TimerFont) this component uses so the Layout Editor can show the correct font override rows. --- src/LiveSplit.Timer/UI/Components/Timer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/LiveSplit.Timer/UI/Components/Timer.cs b/src/LiveSplit.Timer/UI/Components/Timer.cs index 0a01914..192c214 100644 --- a/src/LiveSplit.Timer/UI/Components/Timer.cs +++ b/src/LiveSplit.Timer/UI/Components/Timer.cs @@ -10,6 +10,7 @@ namespace LiveSplit.UI.Components; +[GlobalFontConsumer(GlobalFont.TimerFont)] public class Timer : IComponent { public SimpleLabel BigTextLabel { get; set; }