diff --git a/source/Ox.UI/js/Video/VideoPanel.js b/source/Ox.UI/js/Video/VideoPanel.js index 231888df..c3fdfb2b 100644 --- a/source/Ox.UI/js/Video/VideoPanel.js +++ b/source/Ox.UI/js/Video/VideoPanel.js @@ -370,19 +370,19 @@ Ox.VideoPanel = function(options, self) { } function getPlayerHeight() { - return self.options.height - - self.options.showTimeline * 80 - 1; + return self.options.height + - self.options.showTimeline * 80 - 1; } function getPlayerWidth() { - return self.options.width - - (self.options.showAnnotations && !self.fullscreen) + return self.options.width + - (self.options.showAnnotations && !self.fullscreen) * self.options.annotationsSize - 1; } function getTimelineWidth() { - return self.options.width - - (self.options.showAnnotations && !self.fullscreen) + return self.options.width + - (self.options.showAnnotations && !self.fullscreen) * self.options.annotationsSize - 16 - 1; }