Arch: fixed bug in panel tools

This commit is contained in:
Yorik van Havre
2017-03-17 20:39:35 -03:00
parent 4f165179e3
commit c7d01a7c33

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)