Skip to content

Commit

Permalink
Arch: Fixed bug in BuildingPart obj
Browse files Browse the repository at this point in the history
  • Loading branch information
hoshengwei authored and davesrocketshop committed Mar 16, 2024
1 parent 7e3fc8d commit 755f2ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/ArchBuildingPart.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def touchChildren(self,obj):
FreeCAD.Console.PrintLog("Auto-updating Height of "+child.Name+"\n")
self.touchChildren(child)
child.Proxy.execute(child)
elif Draft.getType(child) in ["Group","BuildingPart"]:
elif Draft.getType(child) in ["App::DocumentObjectGroup","Group","BuildingPart"]:
self.touchChildren(child)


Expand Down

0 comments on commit 755f2ec

Please sign in to comment.