1
0
Fork 0

new: increment minutes by 5 instead of 1

Signed-off-by: thiswillbeyourgithub <github@32mail.33mail.com>
This commit is contained in:
thiswillbeyourgithub 2022-07-20 10:19:17 +02:00
parent 6e9b7b374d
commit cb51e83a28

View file

@ -103,7 +103,7 @@ class AlarmApp:
self.del_alarm_btn = widgets.Button(170, 204, 70, 35, 'DEL') self.del_alarm_btn = widgets.Button(170, 204, 70, 35, 'DEL')
self.hours_wid = widgets.Spinner(50, 30, 0, 23, 2) self.hours_wid = widgets.Spinner(50, 30, 0, 23, 2)
self.min_wid = widgets.Spinner(130, 30, 0, 59, 2) self.min_wid = widgets.Spinner(130, 30, 0, 59, 2, 5)
self.day_btns = (widgets.ToggleButton(10, 145, 40, 35, 'Mo'), self.day_btns = (widgets.ToggleButton(10, 145, 40, 35, 'Mo'),
widgets.ToggleButton(55, 145, 40, 35, 'Tu'), widgets.ToggleButton(55, 145, 40, 35, 'Tu'),
widgets.ToggleButton(100, 145, 40, 35, 'We'), widgets.ToggleButton(100, 145, 40, 35, 'We'),