Skip to content

Commit c429571

Browse files
committed
modify
1 parent 0d6efd1 commit c429571

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

modules/logger_core.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,13 @@ def start_and_stop_manual(self):
340340
if self.config.gui is not None:
341341
self.config.gui.change_start_stop_button(self.config.G_MANUAL_STATUS)
342342

343+
# show message
344+
self.config.gui.show_popup(self.config.G_MANUAL_STATUS + popup_extra, 3)
345+
if display_flash_short:
346+
self.config.display.screen_flash_short()
347+
else:
348+
self.config.display.screen_flash_long()
349+
343350
self.config.state.set_value(
344351
"G_MANUAL_STATUS", self.config.G_MANUAL_STATUS, force_apply=True
345352
)
@@ -358,13 +365,6 @@ def start_and_stop_manual(self):
358365
asyncio.to_thread(self.config.network.set_wifi_enabled, False)
359366
)
360367

361-
# show message
362-
self.config.gui.show_popup(self.config.G_MANUAL_STATUS + popup_extra, 3)
363-
if display_flash_short:
364-
self.config.display.screen_flash_short()
365-
else:
366-
self.config.display.screen_flash_long()
367-
368368
def start_and_stop(self, status=None):
369369
if status is not None:
370370
self.config.G_STOPWATCH_STATUS = status

0 commit comments

Comments
 (0)