From 5823140b213548996e608eb186d36829ce840ff1 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 5 Oct 2020 13:45:24 +0200 Subject: [PATCH] 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 --- cura/MultiplyObjectsJob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/MultiplyObjectsJob.py b/cura/MultiplyObjectsJob.py index 7507f2520e..533f631409 100644 --- a/cura/MultiplyObjectsJob.py +++ b/cura/MultiplyObjectsJob.py @@ -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()