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-01-11 11:33:07 +0300
committerJack Ha <jackha@gmail.com>2018-01-11 11:33:07 +0300
commitb9a99d46922ff52214b7012ed8dea50a89d8524b (patch)
tree0ce15dc656219c9da67fdc7099b621c797db28d0 /cura/CuraActions.py
parentd91a2e1ca36ba2ef0311cfd31ed7c75058c8d1be (diff)
CURA-4525 fix placement on load to only avoid objects on current build plate
Diffstat (limited to 'cura/CuraActions.py')
-rw-r--r--cura/CuraActions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/CuraActions.py b/cura/CuraActions.py
index 2474e218e8..f5aace805b 100644
--- a/cura/CuraActions.py
+++ b/cura/CuraActions.py
@@ -73,7 +73,7 @@ class CuraActions(QObject):
# \param count The number of times to multiply the selection.
@pyqtSlot(int)
def multiplySelection(self, count: int) -> None:
- job = MultiplyObjectsJob(Selection.getAllSelectedObjects(), count, 8)
+ job = MultiplyObjectsJob(Selection.getAllSelectedObjects(), count, min_offset = 8)
job.start()
## Delete all selected objects.