From 59158db34b2c02ed3a43c36650fbb2db1c996ea8 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Mon, 7 Mar 2022 17:07:14 +0100 Subject: [PATCH] Lining at the bottom of UnderlineBackground and at the top of the menu give a double width lining. Moved the menu up slightly so lining of UnderlineBackground is hidden. CURA-9004 --- resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index 706430988d..4b2b84d39e 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -289,7 +289,7 @@ Item extruderIndex: Cura.ExtruderManager.activeExtruderIndex updateModels: materialSelection.visible } - onClicked: materialsMenu.popup(0, height) + onClicked: materialsMenu.popup(0, height - UM.Theme.getSize("default_lining").height) } Item @@ -344,7 +344,7 @@ Item extruderIndex: Cura.ExtruderManager.activeExtruderIndex width: variantSelection.width } - onClicked: nozzlesMenu.popup(0, height) + onClicked: nozzlesMenu.popup(0, height - UM.Theme.getSize("default_lining").height) } }