mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:18:13 +00:00
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:
parent
7b4b060b9c
commit
b7af536f9b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue