diff --git a/source/Ox.UI/js/Video/VideoEditPanel.js b/source/Ox.UI/js/Video/VideoEditPanel.js index 9f18a869..0388e591 100644 --- a/source/Ox.UI/js/Video/VideoEditPanel.js +++ b/source/Ox.UI/js/Video/VideoEditPanel.js @@ -146,6 +146,7 @@ Ox.VideoEditPanel = function(options, self) { enableMouse: true, enablePosition: true, enableTimeline: true, + externalControls: true, height: getPlayerHeight(), 'in': self.options['in'], loop: self.options.loop, @@ -331,7 +332,7 @@ Ox.VideoEditPanel = function(options, self) { } function getPlayerHeight() { - return self.options.height - 24 + return self.options.height - 24 - 32 - self.options.showTimeline * 80 - 1; }