We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242dd31 commit edf5f66Copy full SHA for edf5f66
dls_barcode/gui/countdown_box.py
@@ -45,6 +45,6 @@ def reset_countdown(self):
45
46
def display(self):
47
self._message_lbl.clear()
48
- if self.count is not None and self.count >= 0:
+ if self.count is not None and self.count > 0:
49
self._message_lbl.setText(str(self.count))
50
self.count = self.count - 1
dls_barcode/main_manager.py
@@ -68,8 +68,8 @@ def _restart_live_capture_from_top(self):
68
69
def _restart_live_capture_from_side(self):
70
self._reset_msg_timer()
71
- self._ui.resetCountdown()
72
self._camera_switch.restart_live_capture_from_side()
+ self._ui.resetCountdown()
73
74
def _read_message_queue(self):
75
if self._message_queue.empty():
0 commit comments