Skip to content

Commit 0005d89

Browse files
committed
Fix Playhead location in Keyframes panel doesn't match that in Timeline panel after switching filter
As reported here: https://forum.shotcut.org/t/playhead-location-in-keyframes-panel-doesnt-match-that-in-timeline-panel-after-switching-filter/47907
1 parent 475f0fd commit 0005d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docks/filtersdock.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void FiltersDock::setCurrentFilter(QmlFilter *filter, QmlMetadata *meta, int ind
9292
m_producer.setProducer(filter->producer());
9393
if (mlt_service_playlist_type != filter->producer().type() && MLT.producer()
9494
&& MLT.producer()->is_valid())
95-
m_producer.seek(MLT.producer()->position());
95+
onSeeked(MLT.producer()->position());
9696
} else {
9797
Mlt::Producer emptyProducer(mlt_producer(0));
9898
m_producer.setProducer(emptyProducer);

0 commit comments

Comments
 (0)