diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py index b09dfd1b22d25558efc0b72a18cc19d18eb53308..c8c492ff11185f2af921573e075e17ce5063a178 100644 --- a/io_curve_svg/import_svg.py +++ b/io_curve_svg/import_svg.py @@ -652,6 +652,11 @@ class SVGPathParser: return + last = self._spline['points'][-1] + if last['handle_right_type'] == 'VECTOR' and handle_left_type == 'FREE': + last['handle_right'] = (last['x'], last['y']) + last['handle_right_type'] = 'FREE' + point = {'x': x, 'y': y,