From 8df88e10d679c1a014383eb23f8d5b4c38e92c58 Mon Sep 17 00:00:00 2001 From: rzen Date: Sat, 25 Apr 2026 15:32:29 -0400 Subject: [PATCH] Tighten game score format to "2:3" / "-:-" Drop the spaces around the colon. Score field is still monospaced so the home logo lines up across rows; the tighter format reads more like a hockey score and frees up some horizontal slack on narrow widths. --- IceGlass-iOS/Views/GameRow.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IceGlass-iOS/Views/GameRow.swift b/IceGlass-iOS/Views/GameRow.swift index 8499d30..81d71d9 100644 --- a/IceGlass-iOS/Views/GameRow.swift +++ b/IceGlass-iOS/Views/GameRow.swift @@ -47,7 +47,7 @@ struct GameRow: View { .lineLimit(1) .fixedSize() - Text(showScore ? scoreText : "- : -") + Text(showScore ? scoreText : "-:-") .font(.title3.monospaced()) .fontWeight(.bold) .foregroundStyle(.secondary) @@ -102,7 +102,7 @@ struct GameRow: View { private var scoreText: String { let a = game.awayTeam.score ?? 0 let h = game.homeTeam.score ?? 0 - return "\(a) : \(h)" + return "\(a):\(h)" } private func open() {