fix bug 42729 (#370)

This commit is contained in:
maxkadushkin 2020-03-30 11:42:58 +03:00 committed by GitHub
parent bb883aca9d
commit 9b93ea92b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,7 @@ define([
var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2; var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2;
this.$window.css('left',left); 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', textClose: 'Close',
textTitle: 'Chart Editor' textTitle: 'Chart Editor'
}, Common.Views.ExternalDiagramEditor || {})); }, Common.Views.ExternalDiagramEditor || {}));
}); });