Draft: Small bugfix in wire tool
This commit is contained in:
parent
ab9b6bd5a8
commit
e811e09545
|
@ -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:]
|
||||
|
|
Loading…
Reference in New Issue
Block a user