video annotation panel: add 'delete' shortcut to help
This commit is contained in:
parent
d196176c91
commit
38c8dfae9f
1 changed files with 2 additions and 1 deletions
|
@ -570,7 +570,8 @@ Ox.VideoAnnotationPanel = function(options, self) {
|
||||||
{key: Ox.SYMBOLS.shift + 'G', action: Ox._('Go to Previous Result')},
|
{key: Ox.SYMBOLS.shift + 'G', action: Ox._('Go to Previous Result')},
|
||||||
{key: 'G', action: Ox._('Go to Next Result')},
|
{key: 'G', action: Ox._('Go to Next Result')},
|
||||||
{key: Ox.SYMBOLS['return'], action: Ox._('Edit/Submit')},
|
{key: Ox.SYMBOLS['return'], action: Ox._('Edit/Submit')},
|
||||||
{key: Ox.SYMBOLS.escape, action: Ox._('Cancel/Deselect')}
|
{key: Ox.SYMBOLS.escape, action: Ox._('Cancel/Deselect')},
|
||||||
|
{key: Ox.SYMBOLS.delete, action: Ox._('Delete')}
|
||||||
].concat(
|
].concat(
|
||||||
Ox.filter(self.options.layers.map(function(layer, i) {
|
Ox.filter(self.options.layers.map(function(layer, i) {
|
||||||
return layer.editable
|
return layer.editable
|
||||||
|
|
Loading…
Reference in a new issue