Skip to content

Commit

Permalink
20 hours for sleep timer is way too much. Reduce it to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Dec 1, 2024
1 parent b09c781 commit 83b51d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cozy/ui/widgets/sleep_timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, parent_button: Gtk.Button):
super().__init__()
self._parent_button = parent_button

self.custom_adjustment = Gtk.Adjustment(lower=1, upper=1200, value=20, step_increment=1)
self.custom_adjustment = Gtk.Adjustment(lower=1, upper=300, value=20, step_increment=1)

timer_action_group = Gio.SimpleActionGroup()
self.insert_action_group("timer", timer_action_group)
Expand Down

0 comments on commit 83b51d3

Please sign in to comment.