From fe4e3c531a157f5db91b1b188ccda01be28b34e6 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 25 May 2026 18:02:34 +0200 Subject: [PATCH] Use rounded font for macOS player time labels Switch the current-time and duration labels in the macOS transport control bar from a monospaced design to a rounded design with .monospacedDigit(), keeping stable digit widths while matching the softer Liquid Glass look. --- Yattee/Views/Player/macOS/MacOSControlBar.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Yattee/Views/Player/macOS/MacOSControlBar.swift b/Yattee/Views/Player/macOS/MacOSControlBar.swift index efcd1e60..53e26653 100644 --- a/Yattee/Views/Player/macOS/MacOSControlBar.swift +++ b/Yattee/Views/Player/macOS/MacOSControlBar.swift @@ -215,7 +215,7 @@ struct MacOSControlBar: View { } else { // Current time Text(playerState.formattedCurrentTime) - .font(.system(size: 11, weight: .medium, design: .monospaced)) + .font(.system(size: 11, weight: .medium, design: .rounded).monospacedDigit()) .foregroundStyle(.primary) .lineLimit(1) .fixedSize() @@ -225,7 +225,7 @@ struct MacOSControlBar: View { // Duration Text(playerState.formattedDuration) - .font(.system(size: 11, weight: .medium, design: .monospaced)) + .font(.system(size: 11, weight: .medium, design: .rounded).monospacedDigit()) .foregroundStyle(.secondary) .lineLimit(1) .fixedSize()