video edit panel: update wording in menu, remove print statement

This commit is contained in:
rlx 2013-07-18 13:14:28 +00:00
parent 36c2314b16
commit fe6f61f0ee
2 changed files with 3 additions and 4 deletions

View file

@ -64,9 +64,9 @@ Ox.ClipPanel = function(options, self) {
{id: 'grid', title: Ox._('View as Grid'), checked: self.options.view == 'grid'}, {id: 'grid', title: Ox._('View as Grid'), checked: self.options.view == 'grid'},
]}, ]},
{}, {},
{id: 'split', title: Ox._('Split Clip(s) at Cuts'), disabled: true}, {id: 'split', title: Ox._('Split Selected Clips at Cuts'), disabled: true},
{id: 'join', title: Ox._('Join Clip(s) at Cuts'), disabled: true}, {id: 'join', title: Ox._('Join Selected Clips at Cuts'), disabled: true},
{id: 'dereference', title: Ox._('Make Clip(s) Static'), disabled: true} {id: 'dereference', title: Ox._('Make Selected Clips Static'), disabled: true}
], ],
title: 'set', title: 'set',
tooltip: Ox._('Options'), tooltip: Ox._('Options'),

View file

@ -379,7 +379,6 @@ Ox.VideoEditPanel = function(options, self) {
cuts.push(clip.position); cuts.push(clip.position);
} }
clip.cuts.forEach(function(cut) { clip.cuts.forEach(function(cut) {
Ox.print('PUSHING CLIP CUT', clip.position + cut - clip['in'])
cuts.push(clip.position + cut - clip['in']); cuts.push(clip.position + cut - clip['in']);
}); });
}); });