crossmate

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

commit f60bdf11b732e343fa50696974e36f19c57fa516
parent c450e00a532914eba620a67538d9383e5af2a17d
Author: Michael Camilleri <[email protected]>
Date:   Mon, 29 Jun 2026 11:29:14 +0900

Tweak menu labels in Game List

Diffstat:
MCrossmate/Views/GameList/GameCardView.swift | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Crossmate/Views/GameList/GameCardView.swift b/Crossmate/Views/GameList/GameCardView.swift @@ -161,7 +161,11 @@ struct GameOverflowMenu: View { .disabled(!game.isOwned) } Button { onResume() } label: { - Label("View", systemImage: "puzzlepiece.extension") + if isCompleted { + Label("View", systemImage: "binoculars") + } else { + Label("Resume", systemImage: "puzzlepiece.extension") + } } Section { if !isCompleted {