mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
Calendar: Set minimum hour to 0 and maximum hour to 23 in AddEventDialog
This commit is contained in:
parent
3aaa1c1df7
commit
5875fae9e9
1 changed files with 4 additions and 4 deletions
|
@ -50,8 +50,8 @@
|
|||
@GUI::SpinBox {
|
||||
name: "start_hour"
|
||||
fixed_size: [50, 20]
|
||||
min: 1
|
||||
max: 24
|
||||
min: 0
|
||||
max: 23
|
||||
}
|
||||
|
||||
@GUI::SpinBox {
|
||||
|
@ -90,8 +90,8 @@
|
|||
@GUI::SpinBox {
|
||||
name: "end_hour"
|
||||
fixed_size: [50, 20]
|
||||
min: 1
|
||||
max: 24
|
||||
min: 0
|
||||
max: 23
|
||||
}
|
||||
|
||||
@GUI::SpinBox {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue