From 1d110c2c33f6d7970ace3d15b851bbb6b4f4c59b Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 28 Jan 2020 11:31:10 +0100 Subject: [PATCH] Reduce size of web marketplace link button Contributes to issue CURA-7071. --- plugins/Toolbox/resources/qml/components/ToolboxHeader.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml b/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml index 48d6c4836b..e980a063bf 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml @@ -81,7 +81,7 @@ Item UM.TooltipArea { width: childrenRect.width; - height: childrenRect.height; + height: parent.height text: catalog.i18nc("@info:tooltip", "Go to Web Marketplace") anchors { @@ -93,11 +93,11 @@ Item { id: cloudMarketplaceButton source: "../../images/shop.svg" - height: 45 + height: parent.height / 2 width: height + anchors.verticalCenter: parent.verticalCenter sourceSize.width: width sourceSize.height: height - //width: UM.Theme.getSize("toolbox_header_tab").width fillMode: Image.PreserveAspectFit MouseArea {