Arch: fixed bug in panel tools

This commit is contained in:
Yorik van Havre
2017-03-17 20:39:35 -03:00
parent fc9bb28735
commit 0136dcc5d4

View File

@@ -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)