Skip to content

Commit 0647112

Browse files
committed
fix double-click playlist bin item
In tiles view mode, it is causing the view to scroll. In details mode, it might be the cause of https://forum.shotcut.org/t/double-clicking-in-playlist-bin-selects- other-clip-intermittent/47511
1 parent ce635ba commit 0647112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docks/playlistdock.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ void PlaylistDock::viewDoubleClicked(const QModelIndex &index)
16561656
Mlt::Producer *p = new Mlt::Producer(i->producer);
16571657
p->set_in_and_out(i->frame_in, i->frame_out);
16581658
setPlaylistIndex(p, sourceIndex.row());
1659-
setIndex(sourceIndex.row());
1659+
setIndex(index.row());
16601660
emit clipOpened(p, Settings.playlistAutoplay());
16611661
}
16621662
delete i;

0 commit comments

Comments
 (0)