mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
CURA-4400 grey out disabled extruder in context menu
This commit is contained in:
parent
1dba5629f7
commit
4b060f297f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ Menu
|
|||
MenuItem {
|
||||
text: "%1: %2 - %3".arg(model.name).arg(model.material).arg(model.variant)
|
||||
visible: base.shouldShowExtruders
|
||||
enabled: UM.Selection.hasSelection
|
||||
enabled: UM.Selection.hasSelection && model.enabled
|
||||
checkable: true
|
||||
checked: Cura.ExtruderManager.selectedObjectExtruders.indexOf(model.id) != -1
|
||||
onTriggered: CuraActions.setExtruderForSelection(model.id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue