We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdb0d0 commit 1b67016Copy full SHA for 1b67016
1 file changed
resources/qml/SidebarContents.qml
@@ -57,11 +57,22 @@ Cura.RoundedRectangle
57
anchors.bottom: extruderSelector.bottom
58
height: UM.Theme.getSize("default_lining").height
59
color: UM.Theme.getColor("lining")
60
- visible: extruderSelector.visible
+ visible: extruderSelector.visible && extruderSelector.enabled
61
}
62
ExtruderTabs
63
{
64
id: extruderSelector
65
+ enabled:
66
+ {
67
+ if (printSetupSelector.contentItem.currentModeIndex == Cura.PrintSetupSelectorContents.Mode.Custom)
68
69
+ return true
70
+ }
71
+ else
72
73
+ return extruderConfiguration.visible
74
75
76
77
anchors
78
0 commit comments