crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit c776caacc0b2aedf02b1eda498895425cf8a6d45
parent 56be499578f50a3c5a5c17bbd7cc97b80b7a89c4
Author: Michael Camilleri <[email protected]>
Date:   Mon, 13 Jul 2026 23:06:22 +0900

Tweak minimum scale factor

Diffstat:
MCrossmate/Views/GameList/GameCardView.swift | 2+-
MCrossmate/Views/GameList/GameRowView.swift | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Crossmate/Views/GameList/GameCardView.swift b/Crossmate/Views/GameList/GameCardView.swift @@ -32,7 +32,7 @@ struct GameCardView: View { Text(game.title) .font(.headline) .lineLimit(1) - .minimumScaleFactor(0.8) + .minimumScaleFactor(0.9) .truncationMode(.tail) if game.isShared { SharedGameSymbol() diff --git a/Crossmate/Views/GameList/GameRowView.swift b/Crossmate/Views/GameList/GameRowView.swift @@ -25,7 +25,7 @@ struct GameRowView: View { Text(game.title) .font(.headline) .lineLimit(1) - .minimumScaleFactor(0.8) + .minimumScaleFactor(0.9) .truncationMode(.tail) if game.isShared { SharedGameSymbol()