summaryrefslogtreecommitdiff
path: root/lib/extensions/zip.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions/zip.py')
-rw-r--r--lib/extensions/zip.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/extensions/zip.py b/lib/extensions/zip.py
index 22654560..280c2a14 100644
--- a/lib/extensions/zip.py
+++ b/lib/extensions/zip.py
@@ -43,8 +43,9 @@ class Zip(InkstitchExtension):
self.metadata = self.get_inkstitch_metadata()
collapse_len = self.metadata['collapse_len_mm']
+ min_stitch_len = self.metadata['min_stitch_len_mm']
patches = self.elements_to_stitch_groups(self.elements)
- stitch_plan = stitch_groups_to_stitch_plan(patches, collapse_len=collapse_len)
+ stitch_plan = stitch_groups_to_stitch_plan(patches, collapse_len=collapse_len, min_stitch_len=min_stitch_len)
base_file_name = self.get_base_file_name()
path = tempfile.mkdtemp()