mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Always add multiplied nodes to the root.
No idea why it was using the parent of the current node. It's technically the same, but this is much more explicit CURA-7440
This commit is contained in:
parent
30966beed2
commit
5823140b21
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class MultiplyObjectsJob(Job):
|
|||
if nodes:
|
||||
operation = GroupedOperation()
|
||||
for new_node in nodes:
|
||||
operation.addOperation(AddSceneNodeOperation(new_node, current_node.getParent()))
|
||||
operation.addOperation(AddSceneNodeOperation(new_node, root))
|
||||
operation.push()
|
||||
status_message.hide()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue