Merge pull request #1245 from micahflee/1183_display_autostop_message

"Stopped because auto-stop timer ran out" string should get displayed
This commit is contained in:
Saptak Sengupta 2020-12-14 01:01:48 +05:30 committed by GitHub
commit a520057bf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,8 +177,7 @@ class Mode(QtWidgets.QWidget):
self.status_bar.clearMessage() self.status_bar.clearMessage()
if not self.app.autostop_timer_thread.is_alive(): if not self.app.autostop_timer_thread.is_alive():
if self.autostop_timer_finished_should_stop_server(): self.autostop_timer_finished_should_stop_server()
self.server_status.stop_server()
def timer_callback_custom(self): def timer_callback_custom(self):
""" """