Skip to content
Snippets Groups Projects
Commit 386dd703 authored by luyikei's avatar luyikei
Browse files

Timeline: Fix sortSelectedClips

parent 376ee95b
No related branches found
No related tags found
No related merge requests found
......@@ -298,7 +298,7 @@ Rectangle {
// Sort clips in a manner that clips won't overlap each other while they are being moved
function sortSelectedClips() {
// Workaround: We cannot sort selectedClips directly maybe because of a Qt bug
var sorted = selectedClips.slice();
var sorted = selectedClips.concat();
sorted.sort(
function( clipAUuid, clipBUuid )
{
......@@ -323,6 +323,7 @@ Rectangle {
return 0;
}
);
selectedClips = sorted;
}
function dragFinished() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment