diff --git a/source/Ox.UI/js/Video/ClipPanel.js b/source/Ox.UI/js/Video/ClipPanel.js index 73ff742c..45030ee3 100644 --- a/source/Ox.UI/js/Video/ClipPanel.js +++ b/source/Ox.UI/js/Video/ClipPanel.js @@ -64,9 +64,9 @@ Ox.ClipPanel = function(options, self) { {id: 'grid', title: Ox._('View as Grid'), checked: self.options.view == 'grid'}, ]}, {}, - {id: 'split', title: Ox._('Split Clip(s) at Cuts'), disabled: true}, - {id: 'join', title: Ox._('Join Clip(s) at Cuts'), disabled: true}, - {id: 'dereference', title: Ox._('Make Clip(s) Static'), disabled: true} + {id: 'split', title: Ox._('Split Selected Clips at Cuts'), disabled: true}, + {id: 'join', title: Ox._('Join Selected Clips at Cuts'), disabled: true}, + {id: 'dereference', title: Ox._('Make Selected Clips Static'), disabled: true} ], title: 'set', tooltip: Ox._('Options'), diff --git a/source/Ox.UI/js/Video/VideoEditPanel.js b/source/Ox.UI/js/Video/VideoEditPanel.js index 21c6c715..37714b35 100644 --- a/source/Ox.UI/js/Video/VideoEditPanel.js +++ b/source/Ox.UI/js/Video/VideoEditPanel.js @@ -379,7 +379,6 @@ Ox.VideoEditPanel = function(options, self) { cuts.push(clip.position); } clip.cuts.forEach(function(cut) { - Ox.print('PUSHING CLIP CUT', clip.position + cut - clip['in']) cuts.push(clip.position + cut - clip['in']); }); });