mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 05:53:59 -06:00
Drop objects to buildplate that have been scaled
Otherwise they could be floating very high above the buildplate. CURA-7855
This commit is contained in:
parent
263e1ae3a7
commit
5d9affc690
1 changed files with 5 additions and 0 deletions
|
@ -1918,6 +1918,11 @@ class CuraApplication(QtApplication):
|
|||
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
|
||||
except:
|
||||
Logger.logException("e", "Failed to arrange the models")
|
||||
|
||||
# Ensure that we don't have any weird floaty objects (CURA-7855)
|
||||
for node in nodes_to_arrange:
|
||||
node.translate(Vector(0, -node.getBoundingBox().bottom, 0), SceneNode.TransformSpace.World)
|
||||
|
||||
self.fileCompleted.emit(file_name)
|
||||
|
||||
def addNonSliceableExtension(self, extension):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue