diff --git a/public/js/document/printcontainer.js b/public/js/document/printcontainer.js index 535cf6f..ae4d657 100644 --- a/public/js/document/printcontainer.js +++ b/public/js/document/printcontainer.js @@ -65,7 +65,7 @@ pimcore.document.printcontainer = Class.create(pimcore.document.printabstract, { items.push(this.workflows.getLayout()); } - this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}}); + this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}, height: 46}); return this.tabbar; } }); diff --git a/public/js/document/printpage.js b/public/js/document/printpage.js index 2cbe361..4a4930b 100644 --- a/public/js/document/printpage.js +++ b/public/js/document/printpage.js @@ -75,7 +75,7 @@ pimcore.document.printpage = Class.create(pimcore.document.printabstract, { items.push(this.workflows.getLayout()); } - this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}}); + this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}, height: 46}); return this.tabbar; } });