Skip to content

Commit b24a334

Browse files
committed
Disable delayed auto-start of recording
In the multi-camera recording flow, the `QTimer.singleShot` call that automatically triggered `_start_multi_camera_recording` after starting preview is commented out. This stops the delayed automatic recording start when preview is not yet running.
1 parent 212d16b commit b24a334

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dlclivegui/gui/main_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ def _start_recording(self) -> None:
19641964
# The recording will start after preview is confirmed running
19651965
self.statusBar().showMessage("Starting preview before recording...", 3000)
19661966
# Use a single-shot timer to start recording after preview starts
1967-
QTimer.singleShot(500, self._start_multi_camera_recording)
1967+
# QTimer.singleShot(500, self._start_multi_camera_recording)
19681968
return
19691969

19701970
# Preview already running, start recording immediately

0 commit comments

Comments
 (0)