video edit panel: change title of title column to 'title'

This commit is contained in:
rolux 2014-02-08 20:32:04 +00:00
parent 3eb5c229ec
commit b2426c1ac6
2 changed files with 3 additions and 5 deletions

View file

@ -20,7 +20,6 @@ Ox.ClipPanel = function(options, self) {
},
getClipImageURL: null,
'in': 0,
itemName: '',
layers: [],
out: 0,
position: 0,
@ -95,7 +94,7 @@ Ox.ClipPanel = function(options, self) {
id: 'title',
format: self.options.formatTitle,
operator: '+',
title: self.options.itemName,
title: Ox._('Title'),
visible: true,
width: 120
},
@ -171,6 +170,8 @@ Ox.ClipPanel = function(options, self) {
{id: 'annotations', title: Ox._('View Annotations'), checked: self.options.view == 'annotations'},
]},
{},
{id: 'select', title: 'Select Clip at Current Position', disabled: true},
{},
{id: 'split', title: Ox._('Split Selected Clips at Cuts'), disabled: !self.options.editable || !self.options.selected.length || self.options.view == 'annotations'},
{id: 'join', title: Ox._('Join Selected Clips at Cuts'), disabled: !self.options.editable || self.options.selected.length < 2 || self.options.view == 'annotations'},
{id: 'replace', title: Ox._('Make Selected Clips Editable'), disabled: !self.options.editable || !self.options.selected.length || self.options.view == 'annotations'}
@ -378,7 +379,6 @@ Ox.ClipPanel = function(options, self) {
font: self.options.annotationsFont,
//highlight: self.options.find,
//'in': self.options['in'],
//itemName: self.options.itemName,
layers: self.options.layers,
mapSize: self.options.annotationsMapSize,
//out: self.options.out,

View file

@ -29,7 +29,6 @@ Ox.VideoEditPanel = function(options, self) {
getLargeTimelineURL: null,
height: 0,
'in': 0,
itemName: '',
loop: false,
layers: [],
muted: false,
@ -333,7 +332,6 @@ Ox.VideoEditPanel = function(options, self) {
formatTitle: self.options.formatTitle,
getClipImageURL: self.options.getClipImageURL,
'in': self.options['in'],
itemName: self.options.itemName,
layers: Ox.clone(self.options.layers),
out: self.options.out,
position: self.options.position,