From 84b3e65f30a9155a2a4758f9bed2ca56be769593 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Tue, 13 Dec 2022 16:29:53 +0300 Subject: [PATCH] bug 22445 --- apps/common/main/lib/component/Window.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js index 6ac6a1413b..f312645cba 100644 --- a/apps/common/main/lib/component/Window.js +++ b/apps/common/main/lib/component/Window.js @@ -357,8 +357,8 @@ define([ function _onResizeMove(){ var main_geometry = _readDocumetGeometry(), - main_width = parseInt(main_geometry.width), - main_height = parseInt(main_geometry.height), + main_width = main_geometry.width, + main_height = main_geometry.height, win_height = this.getHeight(), win_width = this.getWidth(), top = this.getTop(),