CURA-4525 fix placement on load to only avoid objects on current build plate

This commit is contained in:
Jack Ha 2018-01-11 09:33:07 +01:00
parent d91a2e1ca3
commit b9a99d4692
2 changed files with 9 additions and 5 deletions

View file

@ -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.