From 146a17537017d4e18411e3e6e1dad904e808930f Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 18 May 2020 13:28:55 +0200 Subject: [PATCH] Arch: Removed wrong warning in walls --- src/Mod/Arch/ArchWall.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index 1a90980bd4..6f3541ad16 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -1109,7 +1109,9 @@ class _Wall(ArchComponent.Component): elif obj.Width: widths = [obj.Width.Value] else: - print ("Width & OverrideWidth & base.getWidths() should not be all 0 or None or [] empty list ") + # having no width is valid for walls so the user doesn't need to be warned + # it just disables extrusions and return none + #print ("Width & OverrideWidth & base.getWidths() should not be all 0 or None or [] empty list ") return None # Set 'default' width - for filling in any item in the list == 0 or None