Draft: Small bugfix in wire tool

This commit is contained in:
Yorik van Havre
2013-07-04 12:50:02 -03:00
parent a7a61751dc
commit 9729270c65

View File

@@ -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:]