1
Fork 0
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:
ronak69 2024-01-08 09:58:47 +00:00 committed by Andrew Kaster
parent 3aaa1c1df7
commit 5875fae9e9

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 {