diff --git a/source/Ox.UI/js/Video/VideoEditPanel.js b/source/Ox.UI/js/Video/VideoEditPanel.js index 92c3ca3f..e5c6f3f4 100644 --- a/source/Ox.UI/js/Video/VideoEditPanel.js +++ b/source/Ox.UI/js/Video/VideoEditPanel.js @@ -645,7 +645,9 @@ Ox.VideoEditPanel = function(options, self) { that.getSelectedClips = function() { return self.options.selected.length ? self.options.selected.map(function(id) { var clip = getClipById(id); - return clip.annotation || clip.item + '/' + clip['in'] + '-' + clip.out; + return ( + clip.annotation || clip.item + '/' + clip['in'] + '-' + clip.out + ) + '/' + id; }) : getClipsInSelection(); };