From 58218d76c2acd3c83b62bc4ad2daff247a00b94c Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Tue, 16 Jun 2020 16:35:22 +0200 Subject: [PATCH] Fix missing visibility in the RowLayout of the ConfigurationMenu This fixes the issue of the "Select configuration" label appearing on top of the extruders in the configuration menu. This could be observed when adding a UM2 with Olsson block. --- resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml index cb498bcef0..a499242c94 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml @@ -41,6 +41,7 @@ Cura.ExpandablePopup RowLayout { anchors.fill: parent + visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasMaterials : false Repeater { model: extrudersModel