From 57a7dd0de95235605ebabafd34a8d2a5e5725e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Wei=C3=9F?= Date: Sun, 2 May 2021 17:01:51 +0200 Subject: [PATCH] Fix look of position time field to match the rest of the UI. --- Window/TimeField.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Window/TimeField.m b/Window/TimeField.m index e15dc3ff3..311a68816 100644 --- a/Window/TimeField.m +++ b/Window/TimeField.m @@ -22,10 +22,10 @@ NSString * formatTimer(long minutes, long seconds, unichar prefix) { - (void)awakeFromNib { showTimeRemaining = [[NSUserDefaults standardUserDefaults] boolForKey:kTimerModeKey]; - if (@available(macOS 10.15, *)) { + if (@available(macOS 10.11, *)) { fontAttributes = - @{NSFontAttributeName : [NSFont monospacedSystemFontOfSize:13 - weight:NSFontWeightMedium]}; + @{NSFontAttributeName : [NSFont monospacedDigitSystemFontOfSize:13 + weight:NSFontWeightRegular]}; [self update]; } }