Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-03-07 19:07:14 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-07 19:07:14 +0300
commit59158db34b2c02ed3a43c36650fbb2db1c996ea8 (patch)
tree8db10adefcf2cc6dc138081acaacddbdf402fc38 /resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
parenta49aa6502cee8c25aa3bb8614266058e8162ff9b (diff)
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
Diffstat (limited to 'resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml')
-rw-r--r--resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml4
1 files 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)
}
}