flatten video actions and settings menu
This commit is contained in:
parent
724d22e14f
commit
f8895e259c
1 changed files with 14 additions and 18 deletions
|
@ -410,13 +410,10 @@ Ox.VideoEditor = function(options, self) {
|
||||||
});
|
});
|
||||||
|
|
||||||
self.$videoMenuButton = Ox.MenuButton({
|
self.$videoMenuButton = Ox.MenuButton({
|
||||||
items: Ox.merge(
|
items: [
|
||||||
[
|
|
||||||
{id: 'toggleSize', title: 'Large Player', selected: self.options.playerSize == 'large', keyboard: 'shift +'},
|
{id: 'toggleSize', title: 'Large Player', selected: self.options.playerSize == 'large', keyboard: 'shift +'},
|
||||||
{}
|
{},
|
||||||
],
|
{group: 'resolution', min: 1, max: 1, items: self.resolutions},
|
||||||
{ group: 'resolution', min: 1, max: 1, items: self.resolutions },
|
|
||||||
[
|
|
||||||
{},
|
{},
|
||||||
{id: 'largeTimeline', title: 'Hide Large Timeline', disabled: true},
|
{id: 'largeTimeline', title: 'Hide Large Timeline', disabled: true},
|
||||||
{id: 'subtitlesTimeline', title: 'Hide Subtitles on Large Timeline', disabled: true},
|
{id: 'subtitlesTimeline', title: 'Hide Subtitles on Large Timeline', disabled: true},
|
||||||
|
@ -426,8 +423,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
{id: 'embedSelection', title: 'Embed Selection...', disabled: true},
|
{id: 'embedSelection', title: 'Embed Selection...', disabled: true},
|
||||||
{},
|
{},
|
||||||
{id: 'keyboard', title: 'Keyboard Shortcuts...', keyboard: 'h'}
|
{id: 'keyboard', title: 'Keyboard Shortcuts...', keyboard: 'h'}
|
||||||
]
|
],
|
||||||
),
|
|
||||||
style: 'square',
|
style: 'square',
|
||||||
title: 'set',
|
title: 'set',
|
||||||
tooltip: 'Actions and Settings',
|
tooltip: 'Actions and Settings',
|
||||||
|
|
Loading…
Reference in a new issue