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:
authorJack Ha <jackha@gmail.com>2018-06-04 12:39:37 +0300
committerJack Ha <jackha@gmail.com>2018-06-04 12:39:37 +0300
commit14294936c544abcb8bcfb779cca561d6afc85018 (patch)
tree5f7d142ce8e32988f1f238b60a97c51aa5b4dfac /cura/MultiplyObjectsJob.py
parent74ba10444e48b303df057520c693d899c6b5dc00 (diff)
CURA-5434 reversed the role of offset_shape_arr and hull_shape_arr, to fix one-at-a-time arranging
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 af24036eeb..57db7734e7 100644
--- a/cura/MultiplyObjectsJob.py
+++ b/cura/MultiplyObjectsJob.py
@@ -38,7 +38,7 @@ class MultiplyObjectsJob(Job):
root = scene.getRoot()
scale = 0.5
- arranger = Arrange.create(x = machine_width, y = machine_depth, scene_root = root, scale = scale)
+ arranger = Arrange.create(x = machine_width, y = machine_depth, scene_root = root, scale = scale, min_offset = self._min_offset)
processed_nodes = []
nodes = []