From 9b93ea92b2a099ac5b412347721b069f6ffbebbd Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Mon, 30 Mar 2020 11:42:58 +0300 Subject: [PATCH] fix bug 42729 (#370) --- apps/common/main/lib/view/ExternalDiagramEditor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/ExternalDiagramEditor.js b/apps/common/main/lib/view/ExternalDiagramEditor.js index 280f002a5..b672b9f2c 100644 --- a/apps/common/main/lib/view/ExternalDiagramEditor.js +++ b/apps/common/main/lib/view/ExternalDiagramEditor.js @@ -144,7 +144,7 @@ define([ var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2; this.$window.css('left',left); - this.$window.css('top',top); + this.$window.css('top', Common.Utils.InternalSettings.get('window-inactive-area-top') + top); } }, @@ -160,4 +160,4 @@ define([ textClose: 'Close', textTitle: 'Chart Editor' }, Common.Views.ExternalDiagramEditor || {})); -}); \ No newline at end of file +});