summaryrefslogtreecommitdiff
path: root/lib/svg
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2020-05-20 20:08:59 +0200
committerGitHub <noreply@github.com>2020-05-20 20:08:59 +0200
commit5c7b97c9feac43f22935ea468dc77aefe04836ba (patch)
treea062aa4b2a196115a157ea35d4ac9bb9c640b560 /lib/svg
parentc65b437cae365f0bec17aa70815f64eda4336514 (diff)
fix corrupted presets error (#715)
Diffstat (limited to 'lib/svg')
-rw-r--r--lib/svg/tags.py8
1 files changed, 4 insertions, 4 deletions
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')