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:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user