diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 1d06c9db6c..811e879207 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -468,6 +468,12 @@ class CuraApplication(QtApplication): for child in children_to_move: child.setParent(node.getParent()) + print(node.getPosition()) + child.translate(node.getPosition()) + child.setPosition(child.getPosition().scale(node.getScale())) + child.scale(node.getScale()) + child.rotate(node.getOrientation()) + Selection.add(child) child.callDecoration("setConvexHull",None) node.setParent(None)