diff options
Diffstat (limited to 'src/2geom/svg-path-parser.cpp')
| -rw-r--r-- | src/2geom/svg-path-parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/svg-path-parser.cpp b/src/2geom/svg-path-parser.cpp index 811a04c3c..932f95829 100644 --- a/src/2geom/svg-path-parser.cpp +++ b/src/2geom/svg-path-parser.cpp @@ -128,7 +128,7 @@ private: void _arcTo(double rx, double ry, double angle, bool large_arc, bool sweep, Point p) { - if (_current == p) { + if (are_near(_current, p)) { return; } _quad_tangent = _cubic_tangent = _current = p; |
