From 0f6ae88ea66797e8f5f28c38a1badca84fd94d32 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 20 Apr 2026 11:19:54 +0200 Subject: [PATCH] feat: auto-enable review mode when clicking a scan result Co-Authored-By: Claude Opus 4.6 --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index f617da8..3e6d082 100755 --- a/main.py +++ b/main.py @@ -4182,6 +4182,8 @@ class MainWindow(QMainWindow): def _on_scan_seek(self, t: float) -> None: """Seek player when a scan result row is clicked.""" if self._file_path: + if not self._btn_scan_mode.isChecked(): + self._btn_scan_mode.setChecked(True) self._cursor = t self._mpv.seek(t) self._timeline.set_cursor(t)