diff --git a/public/js/pimcore/helpers.js b/public/js/pimcore/helpers.js index c8b3008d4..23452c678 100644 --- a/public/js/pimcore/helpers.js +++ b/public/js/pimcore/helpers.js @@ -1078,7 +1078,6 @@ pimcore.helpers.uploadDialog = function (url, filename, success, failure, descri autoHeight: true, autoScroll: true }); - win.show(); const finishedErrorHandler = function (pbar) { activeUploads--; @@ -1101,6 +1100,10 @@ pimcore.helpers.uploadDialog = function (url, filename, success, failure, descri style: "margin-bottom: 5px" }); + if (!win.isVisible()){ + win.show(); + } + win.add(pbar); win.updateLayout();