mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 02:38:59 +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
Notes:
sideshowbarker
2024-07-18 01:06:12 +09:00
Author: https://github.com/pmhpereira
Commit: b7af536f9b
Pull-request: https://github.com/SerenityOS/serenity/pull/10910
Reviewed-by: https://github.com/linusg ✅
Reviewed-by: https://github.com/trflynn89
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