summaryrefslogtreecommitdiff
path: root/embroider.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2017-11-23 20:04:31 +0000
committerLex Neva <github.com@lexneva.name>2017-11-23 20:04:31 +0000
commita8a79e38de0866ad813218e15182327633d55733 (patch)
tree5528388117cb5899805259868a71cbbced49ae5f /embroider.py
parent193bb1b2fd5dcd2e1cd8b6c64d03fd736fc31f12 (diff)
don't omit jump stitches
Diffstat (limited to 'embroider.py')
-rw-r--r--embroider.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/embroider.py b/embroider.py
index b7edc011..4fcd89e3 100644
--- a/embroider.py
+++ b/embroider.py
@@ -1736,7 +1736,7 @@ def stitches_to_polylines(stitches):
# last_color = None
- if stitch.color != last_color or stitch.jump_stitch:
+ if stitch.color != last_color:
polylines.append([stitch.color, []])
polylines[-1][1].append(stitch.as_tuple())