mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +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 {
|
@GUI::SpinBox {
|
||||||
name: "start_hour"
|
name: "start_hour"
|
||||||
fixed_size: [50, 20]
|
fixed_size: [50, 20]
|
||||||
min: 1
|
min: 0
|
||||||
max: 24
|
max: 23
|
||||||
}
|
}
|
||||||
|
|
||||||
@GUI::SpinBox {
|
@GUI::SpinBox {
|
||||||
|
@ -90,8 +90,8 @@
|
||||||
@GUI::SpinBox {
|
@GUI::SpinBox {
|
||||||
name: "end_hour"
|
name: "end_hour"
|
||||||
fixed_size: [50, 20]
|
fixed_size: [50, 20]
|
||||||
min: 1
|
min: 0
|
||||||
max: 24
|
max: 23
|
||||||
}
|
}
|
||||||
|
|
||||||
@GUI::SpinBox {
|
@GUI::SpinBox {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue