Calendar: Set minimum hour to 0 and maximum hour to 23 in AddEventDialog

This commit is contained in:
ronak69 2024-01-08 09:58:47 +00:00 committed by Andrew Kaster
parent 3aaa1c1df7
commit 5875fae9e9
Notes: sideshowbarker 2024-07-17 07:38:17 +09:00

View File

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