Arch: Arch_Window fix clone recompute issue

See https://github.com/FreeCAD/FreeCAD/pull/11868#issuecomment-1937633689
This commit is contained in:
Roy-043
2024-02-11 17:52:48 +01:00
committed by Yorik van Havre
parent c21dca3a21
commit 65b211259d

View File

@@ -643,7 +643,7 @@ class _Window(ArchComponent.Component):
if prop in ["Base","WindowParts","Placement","HoleDepth","Height","Width","Hosts"]:
setattr(self,prop,getattr(obj,prop))
if prop in ["Height","Width"]:
if prop in ["Height","Width"] and obj.CloneOf is None:
self.TouchOnShapeChange = True # touch hosts after next "Shape" change
def onChanged(self,obj,prop):