Skip to content

Commit 2a17843

Browse files
committed
Fix message when stopping inference while recording
1 parent 9990686 commit 2a17843

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dlclivegui/gui/main_window.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
from dlclivegui.config import (
5252
ALLOWED_VIDEO_CONTAINERS,
5353
DEFAULT_CONFIG,
54-
GUI_MAX_DISPLAY_FPS,
5554
DEFAULT_RECORDING_CONTAINER,
5655
DLC_DO_LOG_TIMING,
56+
GUI_MAX_DISPLAY_FPS,
5757
ApplicationSettings,
5858
BoundingBoxSettings,
5959
CameraSettings,
@@ -2507,9 +2507,9 @@ def _stop_inference(self, show_message: bool = True) -> None:
25072507
answer = QMessageBox.question(
25082508
self,
25092509
"Stop inference while recording?",
2510-
"This will stop currently running DLC-live custom processor. \n"
2510+
"This will stop the currently running DLC-live custom processor, if any.\n"
25112511
"File saving will not be handled via the standard 'recording stopped' event hooks."
2512-
"The processor might still save data now, but this will not be paired with the recording.\n\n"
2512+
"The processor might still save data now, but it will not be paired with the recording.\n\n"
25132513
"Stop inference anyway?",
25142514
)
25152515
if answer != QMessageBox.Yes:

0 commit comments

Comments
 (0)