mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06: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
|
@ -67,8 +67,8 @@ Cura.Menu
|
|||
height: visible ? implicitHeight: 0
|
||||
}
|
||||
}
|
||||
onObjectAdded: base.insertMenu(index, object)
|
||||
onObjectRemoved: base.removeMenu(object)
|
||||
onObjectAdded: function(index, object) { base.insertMenu(index, object) }
|
||||
onObjectRemoved:function(object) { base.removeMenu(object)}
|
||||
}
|
||||
|
||||
Cura.MenuSeparator { }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue