From f8a9fa1a660279e7c35fcaea158771830345074a Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 20 Jul 2016 14:44:44 +0200 Subject: [PATCH] Deleting objects from groups no longer cause position changes CURA-1891 --- cura/CuraApplication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 361facc30c..79bb21cd15 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -583,6 +583,7 @@ class CuraApplication(QtApplication): op.push() if group_node: if len(group_node.getChildren()) == 1 and group_node.callDecoration("isGroup"): + group_node.getChildren()[0].translate(group_node.getPosition()) group_node.getChildren()[0].setParent(group_node.getParent()) op = RemoveSceneNodeOperation(group_node) op.push()