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.
This commit is contained in:
Pedro Pereira 2021-11-15 11:46:46 +00:00 committed by Linus Groh
commit b7af536f9b
Notes: sideshowbarker 2024-07-18 01:06:12 +09:00

View file

@ -20,7 +20,7 @@
@GUI::SpinBox { @GUI::SpinBox {
name: "columns_spinbox" name: "columns_spinbox"
min: 10 min: 9
max: 50 max: 50
fixed_width: 40 fixed_width: 40
} }
@ -35,7 +35,7 @@
@GUI::SpinBox { @GUI::SpinBox {
name: "rows_spinbox" name: "rows_spinbox"
min: 10 min: 9
max: 50 max: 50
fixed_width: 40 fixed_width: 40
} }