From e811e0954577c673cb890bdd9b0f34f4f8dad845 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Thu, 4 Jul 2013 12:50:02 -0300 Subject: [PATCH] Draft: Small bugfix in wire tool --- src/Mod/Draft/Draft.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index d44414748..a9c2f1491 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -3177,7 +3177,10 @@ class _Wire(_DraftObject): w = DraftGeomUtils.filletWire(shape,fp.FilletRadius) if w: shape = w - shape = Part.Face(shape) + try: + shape = Part.Face(shape) + except: + pass else: edges = [] pts = fp.Points[1:]