From b0775ee7cea7ab62482d7e1c966c35c2767aa1da Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 18 May 2020 15:04:26 +0200 Subject: [PATCH] Arch: Fixed regression in compound walls --- src/Mod/Arch/ArchWall.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index 6f3541ad16..bef56798f3 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -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)