crossmate

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

commit 35251409520929a0b1344056ec1088e1e9856cac
parent 165d16b51ee110f8c634c1d372c43d58154908f1
Author: Michael Camilleri <[email protected]>
Date:   Thu, 18 Jun 2026 05:50:17 +0900

Remove nudge icon from menu

Diffstat:
MCrossmate/Views/Puzzle/PuzzleModifiers.swift | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Crossmate/Views/Puzzle/PuzzleModifiers.swift b/Crossmate/Views/Puzzle/PuzzleModifiers.swift @@ -193,10 +193,8 @@ struct PuzzleToolbarModifier: ViewModifier { private var nudgeSection: some View { if let onNudge, roster.entries.contains(where: { !$0.isLocal }) { Section { - Button { + Button("Nudge Players") { Task { await onNudge() } - } label: { - Label("Nudge Players", systemImage: "hand.wave") } .disabled(isSolved || !canNudge()) }