summaryrefslogtreecommitdiff
path: root/lib/output.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-07-15 22:53:18 -0400
committerLex Neva <github.com@lexneva.name>2018-07-25 21:17:58 -0400
commit2cd4963d09ef78dd25a7401cc47a69474d7fa952 (patch)
treeb9d7e8433694138e30daa76ff2f6206e39a5dd6c /lib/output.py
parentdbcbf7cff1c8e76a2715d939818124c33cb5fa1e (diff)
adjust stitch plan code for pyembroidery
Diffstat (limited to 'lib/output.py')
-rw-r--r--lib/output.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/output.py b/lib/output.py
index 491c190a..1c580f04 100644
--- a/lib/output.py
+++ b/lib/output.py
@@ -111,7 +111,11 @@ def write_embroidery_file(file_path, stitch_plan, svg):
# convert from pixels to millimeters
# also multiply by 10 to get tenths of a millimeter as required by pyembroidery
- "scale": (scale, scale)
+ "scale": (scale, scale),
+
+ # This forces a jump at the start of the design and after each trim,
+ # even if we're close enough not to need one.
+ "full_jump": True,
}
pyembroidery.write(pattern, file_path, settings)