From b7af536f9bc925bf29de9b2d032b9c95c9bb55bc Mon Sep 17 00:00:00 2001 From: Pedro Pereira Date: Mon, 15 Nov 2021 11:46:46 +0000 Subject: [PATCH] Minesweeper: Decrease min for Columns and Rows on Custom Game Since the Beginner difficulty has a 9x9 playing field, it is expected that a Custom Game should allow to create a field with that size. --- Userland/Games/Minesweeper/MinesweeperCustomGameWindow.gml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Games/Minesweeper/MinesweeperCustomGameWindow.gml b/Userland/Games/Minesweeper/MinesweeperCustomGameWindow.gml index 419c190b9f..8c54f93b4e 100644 --- a/Userland/Games/Minesweeper/MinesweeperCustomGameWindow.gml +++ b/Userland/Games/Minesweeper/MinesweeperCustomGameWindow.gml @@ -20,7 +20,7 @@ @GUI::SpinBox { name: "columns_spinbox" - min: 10 + min: 9 max: 50 fixed_width: 40 } @@ -35,7 +35,7 @@ @GUI::SpinBox { name: "rows_spinbox" - min: 10 + min: 9 max: 50 fixed_width: 40 }