Reset the state during stop

This commit is contained in:
Gobinath 2016-11-05 10:00:35 +05:30
parent 30efe0095b
commit 0f275f8179
2 changed files with 6 additions and 1 deletions

View File

@ -157,6 +157,11 @@ class SafeEyesCore:
Stop Safe Eyes
"""
def stop(self):
# Reset the state properties in case of restart
self.break_count = 0
self.long_break_message_index = -1
self.short_break_message_index = -1
self.notification_condition.acquire()
self.active = False
self.notification_condition.notify()

View File

@ -31,7 +31,7 @@
"interval_between_two_breaks": "Interval between two breaks",
"no_of_short_breaks_between_two_long_breaks": "Number of short breaks between two long breaks",
"time_to_prepare_for_break": "Time to prepare for break (in seconds)",
"strict_break": "Strict break (Hide {skip} button)",
"strict_break": "Strict break (Hide skip button)",
"enable": "Enable Safe Eyes",
"settings": "Settings",
"quit": "Quit",