diff options
Diffstat (limited to 'lib/extensions/output.py')
| -rw-r--r-- | lib/extensions/output.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/extensions/output.py b/lib/extensions/output.py index a3f35d2f..ef542277 100644 --- a/lib/extensions/output.py +++ b/lib/extensions/output.py @@ -9,6 +9,7 @@ import tempfile from ..output import write_embroidery_file from ..stitch_plan import stitch_groups_to_stitch_plan +from ..threads import ThreadCatalog from .base import InkstitchExtension @@ -56,6 +57,7 @@ class Output(InkstitchExtension): 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), min_stitch_len=min_stitch_len) + ThreadCatalog().match_and_apply_palette(stitch_plan, self.metadata['thread-palette']) temp_file = tempfile.NamedTemporaryFile(suffix=".%s" % self.file_extension, delete=False) |
