Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2017-04-07 17:16:38 +0300
committerJaime van Kessel <nallath@gmail.com>2017-04-07 17:16:38 +0300
commitf42efcb7e03f683bedd6d17108fab488db9a2b0d (patch)
treedbfdf11da2c6bb2a2f35df8a7b518b021e900391 /cura/MultiplyObjectsJob.py
parent04eca9073a3ba60d91f38ca84ab496c764688abd (diff)
Removed count from findNodePlacement
CURA-3239
Diffstat (limited to 'cura/MultiplyObjectsJob.py')
-rw-r--r--cura/MultiplyObjectsJob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/MultiplyObjectsJob.py b/cura/MultiplyObjectsJob.py
index 184dd8a07e..f7bb3cf0fb 100644
--- a/cura/MultiplyObjectsJob.py
+++ b/cura/MultiplyObjectsJob.py
@@ -52,7 +52,7 @@ class MultiplyObjectsJob(Job):
for i in range(self._count):
# We do place the nodes one by one, as we want to yield in between.
- nodes.extend(arranger.findNodePlacements(current_node, offset_shape_arr, hull_shape_arr, count = 1))
+ nodes.append(arranger.findNodePlacement(current_node, offset_shape_arr, hull_shape_arr))
Job.yieldThread()
status_message.setProgress((i + 1) / self._count * 100)