mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 11:21:14 -07:00
No longer inject parameters into function handling in qml
This commit is contained in:
parent
1df9ca55c8
commit
af712785c8
12 changed files with 36 additions and 39 deletions
|
|
@ -49,8 +49,8 @@ Cura.Menu
|
|||
onTriggered: Cura.MachineManager.setVariant(nozzleMenu.extruderIndex, model.container_node)
|
||||
}
|
||||
|
||||
onObjectAdded: nozzleMenu.insertItem(index, object)
|
||||
onObjectRemoved: nozzleMenu.removeItem(object)
|
||||
onObjectAdded: function(index, object) { nozzleMenu.insertItem(index, object) }
|
||||
onObjectRemoved: function(object) {nozzleMenu.removeItem(object)}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue