diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-04-30 19:46:12 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-04-30 19:46:12 -0400 |
| commit | febf98a2d30fb74a1c2f6b35f0932be5664161f6 (patch) | |
| tree | 6cacc62d6578287aa50b91c0ded98387db1bd00a /lib/extensions | |
| parent | 5b6923fe9d8d5f3afb0ef298ad34708e735fc5e5 (diff) | |
add grbl laser options for g-code output
Diffstat (limited to 'lib/extensions')
| -rw-r--r-- | lib/extensions/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/output.py b/lib/extensions/output.py index 8b99c027..ccf4d7cb 100644 --- a/lib/extensions/output.py +++ b/lib/extensions/output.py @@ -46,7 +46,7 @@ class Output(InkstitchExtension): return patches = self.elements_to_patches(self.elements) - stitch_plan = patches_to_stitch_plan(patches) + stitch_plan = patches_to_stitch_plan(patches, disable_ties=self.settings.get('laser_mode', False)) temp_file = tempfile.NamedTemporaryFile(suffix=".%s" % self.file_extension, delete=False) |
