Skip to content

Commit

Permalink
Add source comment typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz committed May 19, 2018
1 parent ed1470e commit c4474f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/DraftTools.py
Expand Up @@ -4119,7 +4119,7 @@ def update(self,v):
tol = 0.001
if ( ( self.editing == 0 ) and ( (editPnt - pts[-1]).Length < tol) ) or ( self.editing == len(pts) - 1 ) and ( (editPnt - pts[0]).Length < tol):
self.obj.Closed = True
# DNC: fix error message if edited point coinsides with one of the existing points
# DNC: fix error message if edited point coincides with one of the existing points
if ( editPnt in pts ) == False:
if Draft.getType(self.obj) in ["BezCurve"]:
knot = None
Expand Down

0 comments on commit c4474f1

Please sign in to comment.