new: increment minutes by 5 instead of 1
Signed-off-by: thiswillbeyourgithub <github@32mail.33mail.com>
This commit is contained in:
parent
6e9b7b374d
commit
cb51e83a28
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class AlarmApp:
|
|||
|
||||
self.del_alarm_btn = widgets.Button(170, 204, 70, 35, 'DEL')
|
||||
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'),
|
||||
widgets.ToggleButton(55, 145, 40, 35, 'Tu'),
|
||||
widgets.ToggleButton(100, 145, 40, 35, 'We'),
|
||||
|
|
Loading…
Reference in a new issue