mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 01:40:46 +00:00
GameOfLife: Auto-size toolbar labels
This commit is contained in:
parent
9a3f62adc7
commit
e7dc0bdba3
Notes:
sideshowbarker
2024-07-18 17:59:09 +09:00
Author: https://github.com/linusg
Commit: e7dc0bdba3
Pull-request: https://github.com/SerenityOS/serenity/pull/7194
1 changed files with 11 additions and 6 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
@GUI::Label {
|
||||
text: "Columns: "
|
||||
fixed_width: 60
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::SpinBox {
|
||||
|
@ -18,11 +18,13 @@
|
|||
max: 999
|
||||
fixed_width: 40
|
||||
}
|
||||
|
||||
@GUI::VerticalSeparator {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Rows: "
|
||||
fixed_width: 40
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::SpinBox {
|
||||
|
@ -31,12 +33,15 @@
|
|||
max: 999
|
||||
fixed_width: 40
|
||||
}
|
||||
|
||||
@GUI::VerticalSeparator {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Update Speed: "
|
||||
fixed_width: 90
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::SpinBox {
|
||||
name: "interval_spinbox"
|
||||
min: 10
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue