video edit panel: make getSelectedClips return the full unique id strings
This commit is contained in:
parent
50f4bb145d
commit
d9bdf4e9b9
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue