Arch: Fixed regression in compound walls

This commit is contained in:
Yorik van Havre
2020-05-18 15:04:26 +02:00
parent 146a175370
commit 6945e37635

View File

@@ -928,8 +928,10 @@ class _Wall(ArchComponent.Component):
FreeCAD.Console.PrintWarning(translate("Arch","This mesh is an invalid solid")+"\n")
obj.Base.ViewObject.show()
if not base:
FreeCAD.Console.PrintError(translate("Arch","Error: Invalid base object")+"\n")
return
#FreeCAD.Console.PrintError(translate("Arch","Error: Invalid base object")+"\n")
#return
# walls can be made of only a series of additions and have no base shape
base = Part.Shape()
base = self.processSubShapes(obj,base,pl)