mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-20 12:39:06 +08: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
@ -103,7 +103,7 @@ class MultiplyObjectsJob(Job):
|
|||||||
if nodes:
|
if nodes:
|
||||||
operation = GroupedOperation()
|
operation = GroupedOperation()
|
||||||
for new_node in nodes:
|
for new_node in nodes:
|
||||||
operation.addOperation(AddSceneNodeOperation(new_node, current_node.getParent()))
|
operation.addOperation(AddSceneNodeOperation(new_node, root))
|
||||||
operation.push()
|
operation.push()
|
||||||
status_message.hide()
|
status_message.hide()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user