summaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2019-07-27 15:45:12 -0400
committerGitHub <noreply@github.com>2019-07-27 15:45:12 -0400
commit03af8b37276870efd97f7049ced006f6e01ef935 (patch)
tree8a0aab903f19af1e01fdef6570df1ffe021ddf95 /lib/extensions
parent32548e8e51d13d511813ba4e2a4571bd73e440e5 (diff)
parentb3637f261f9d248408ff3fbd92f9c676c3abe768 (diff)
add grbl laser options for g-code output (#450)
add grbl laser options for g-code output
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/output.py2
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)