diff options
Diffstat (limited to 'lib/extensions/output.py')
| -rw-r--r-- | lib/extensions/output.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/output.py b/lib/extensions/output.py index ef542277..5f2b485d 100644 --- a/lib/extensions/output.py +++ b/lib/extensions/output.py @@ -54,8 +54,8 @@ class Output(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, disable_ties=self.settings.get('laser_mode', False), + stitch_groups = self.elements_to_stitch_groups(self.elements) + stitch_plan = stitch_groups_to_stitch_plan(stitch_groups, collapse_len=collapse_len, disable_ties=self.settings.get('laser_mode', False), min_stitch_len=min_stitch_len) ThreadCatalog().match_and_apply_palette(stitch_plan, self.metadata['thread-palette']) |
