Does not do force-update when resizing.

This commit is contained in:
damencho 2016-03-16 14:35:30 -05:00
parent 97733cd17a
commit 3577f338cc
2 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ function registerListeners() {
UI.addListener(UIEvents.TOGGLE_FILM_STRIP, function () {
UI.toggleFilmStrip();
VideoLayout.resizeVideoArea(PanelToggler.isVisible(), true, true);
VideoLayout.resizeVideoArea(PanelToggler.isVisible(), true, false);
});
}

View File

@ -93,7 +93,7 @@ function toggle (object, selector, onOpenComplete,
function resizeVideoArea(isSidePanelVisible, completeFunction) {
VideoLayout.resizeVideoArea(!isSidePanelVisible,
false,
true,
false,
completeFunction);
}