From 82f7e9dcdc9cfbd652cfd396f355c755450f59cf Mon Sep 17 00:00:00 2001 From: Rob Walch Date: Fri, 9 Aug 2019 14:58:12 -0400 Subject: [PATCH] [JW8-10140] Don't update size on aspect ratio change when floating --- src/js/view/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/view/view.js b/src/js/view/view.js index 8a9369351e..1ab8e54d25 100644 --- a/src/js/view/view.js +++ b/src/js/view/view.js @@ -481,7 +481,7 @@ function View(_api, _model) { style(aspectRatioContainer, { paddingTop: aspectratio || null }); - if (_this.isSetup && aspectratio) { + if (_this.isSetup && aspectratio && !_model.get('isFloating')) { style(_playerElement, getPlayerSizeStyles(model.get('width'))); _responsiveUpdate(); }