diff --git a/src/Mod/Path/PathFeedRate.py b/src/Mod/Path/PathFeedRate.py index a64f084209..ad151342db 100644 --- a/src/Mod/Path/PathFeedRate.py +++ b/src/Mod/Path/PathFeedRate.py @@ -67,7 +67,7 @@ def setFeedRate(commandlist, ToolController): else currentposition.z ) endpoint = FreeCAD.Vector(x, y, z) - if currentposition == endpoint: + if PathGeom.pointsCoincide(currentposition, endpoint): return True return PathGeom.isVertical(Part.makeLine(currentposition, endpoint))