From d2a50cada123477cccea675a39ff16b91cb52f95 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 18 Nov 2016 12:56:07 +0100 Subject: [PATCH] Only reset transformation/ position if there is a bounding box. If a node has no bounding box, it's because it has no data to change. CURA-2925 --- cura/CuraApplication.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index a445f127ef..5c186fbe75 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -777,7 +777,8 @@ class CuraApplication(QtApplication): for node in nodes: # Ensure that the object is above the build platform node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator) - op.addOperation(SetTransformOperation(node, Vector(0, node.getWorldPosition().y - node.getBoundingBox().bottom, 0))) + if node.getBoundingBox(): + op.addOperation(SetTransformOperation(node, Vector(0, node.getWorldPosition().y - node.getBoundingBox().bottom, 0))) op.push() ## Reset all transformations on nodes with mesh data. @@ -799,10 +800,9 @@ class CuraApplication(QtApplication): for node in nodes: # Ensure that the object is above the build platform node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator) - - center_y = node.getWorldPosition().y - node.getBoundingBox().bottom - - op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0), Quaternion(), Vector(1, 1, 1))) + if node.getBoundingBox(): + center_y = node.getWorldPosition().y - node.getBoundingBox().bottom + op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0), Quaternion(), Vector(1, 1, 1))) op.push() ## Reload all mesh data on the screen from file.