From 92023533b5617492eb882b919dbb51ad094dd2b7 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 3 Mar 2014 12:18:54 -0300 Subject: [PATCH] Draft: small fix to clone object --- src/Mod/Draft/Draft.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 4bb99ed0a..6957616cf 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -4528,8 +4528,9 @@ class _Clone(_DraftObject): if shapes: if len(shapes) == 1: obj.Shape = shapes[0] + obj.Placement = shapes[0].Placement else: - obj.Shape = Part.makeCompound(shapes) + obj.Shape = Part.makeCompound(shapes) if not DraftGeomUtils.isNull(pl): obj.Placement = pl