Draft: Small bugfix in wire tool

This commit is contained in:
Yorik van Havre 2013-07-04 12:50:02 -03:00
parent ab9b6bd5a8
commit e811e09545

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