fix: lock mode seek falls back to cursor instead of jumping to start

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-14 19:15:01 +02:00
parent 1aeaad7f6d
commit bd4e97c45a
+1 -1
View File
@@ -1027,7 +1027,7 @@ class TimelineWidget(QWidget):
def _emit_seek(self): def _emit_seek(self):
if self._locked: if self._locked:
self.seek_changed.emit(self._play_pos or 0.0) self.seek_changed.emit(self._play_pos if self._play_pos is not None else self._cursor)
else: else:
self.cursor_changed.emit(self._cursor) self.cursor_changed.emit(self._cursor)