From c7d01a7c333af3994c19e53c957720abd0afa936 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 17 Mar 2017 20:39:35 -0300 Subject: [PATCH] Arch: fixed bug in panel tools --- src/Mod/Arch/ArchPanel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Arch/ArchPanel.py b/src/Mod/Arch/ArchPanel.py index e4d59b6ae3..64ff205b7d 100644 --- a/src/Mod/Arch/ArchPanel.py +++ b/src/Mod/Arch/ArchPanel.py @@ -737,9 +737,9 @@ class PanelCut(Draft._DraftObject): self.execute(obj) if not hasattr(self,"outline"): return None - outl = self.outline + outl = self.outline.copy() if hasattr(self,"tag"): - tag = self.tag + tag = self.tag.copy() if tag: tag.Placement = obj.Placement.multiply(tag.Placement) outl.Placement = obj.Placement.multiply(outl.Placement)