From ed24f5e451518f911357b850366696ac537c7194 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 24 Aug 2015 14:37:20 +0200 Subject: [PATCH] Duplication now takes sunk into bottom into account. Fixes Ultimaker/Cura#286 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index da9d0a3543..70c1496ec2 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -265,7 +265,7 @@ class CuraApplication(QtApplication): new_node = SceneNode() new_node.setMeshData(node.getMeshData()) - new_node.translate(Vector((i + 1) * node.getBoundingBox().width, 0, 0)) + new_node.translate(Vector((i + 1) * node.getBoundingBox().width, node.getPosition().y, 0)) new_node.setOrientation(node.getOrientation()) new_node.setScale(node.getScale()) new_node.setSelectable(True)