From 58dd532fc0271d4f302832cb52e951abde0427f9 Mon Sep 17 00:00:00 2001 From: Divesh Pahuja Date: Thu, 16 Nov 2023 13:41:42 +0100 Subject: [PATCH] theme update support --- public/js/document/printcontainer.js | 2 +- public/js/document/printpage.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } });