commit c3ea032d28cca9108f3d16ac4b52f4af4d61afbe parent 5194cd740003dd6957ccc8e1774aa181c5f678b7 Author: Michael Camilleri <[email protected]> Date: Fri, 19 Jun 2026 16:32:07 +0900 Adjust spacing of header scoreboard Diffstat:
| M | Crossmate/Views/Puzzle/PuzzleScoreboard.swift | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Crossmate/Views/Puzzle/PuzzleScoreboard.swift b/Crossmate/Views/Puzzle/PuzzleScoreboard.swift @@ -176,7 +176,9 @@ struct PuzzleScoreboard: View { } private var showsNudgeButton: Bool { - onNudge != nil && roster.entries.contains(where: { !$0.isLocal }) + onNudge != nil + && !session.mutator.isCompleted + && roster.entries.contains(where: { !$0.isLocal }) } @ViewBuilder @@ -227,7 +229,7 @@ struct PuzzleScoreboard: View { // rather than a stray chip, and scrolls when there are enough // players to overflow the band — no centring tricks required. ScrollView(.vertical, showsIndicators: false) { - VStack(spacing: 7) { + VStack(spacing: 6) { playersHeading chipFlow }