From 5c7b97c9feac43f22935ea468dc77aefe04836ba Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 20 May 2020 20:08:59 +0200 Subject: fix corrupted presets error (#715) --- lib/svg/tags.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 589f489e..3dcf3010 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -41,10 +41,10 @@ SVG_OBJECT_TAGS = (SVG_ELLIPSE_TAG, SVG_CIRCLE_TAG, SVG_RECT_TAG) INKSTITCH_ATTRIBS = {} inkstitch_attribs = [ 'ties', - 'trim_after', - 'stop_after', # clone 'clone', + # polyline + 'polyline', # fill 'angle', 'auto_fill', @@ -86,8 +86,8 @@ inkstitch_attribs = [ 'pull_compensation_mm', 'stroke_first', # Legacy - 'embroider_trim_after', - 'embroider_stop_after' + 'trim_after', + 'stop_after' ] for attrib in inkstitch_attribs: INKSTITCH_ATTRIBS[attrib] = inkex.addNS(attrib, 'inkstitch') -- cgit v1.2.3