1
Fork 0
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:
Pedro Pereira 2021-11-15 11:46:46 +00:00 committed by Linus Groh
parent 7b4b060b9c
commit b7af536f9b

View file

@ -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
}