summaryrefslogtreecommitdiff
path: root/lib/elements/element.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-06-30 14:19:28 -0400
committerLex Neva <github.com@lexneva.name>2018-07-12 20:13:46 -0400
commitaa86dc56ad5cb9166ab1c9cda036d9521855ad29 (patch)
treeeb023aa54b929a78a117bd683314be3662a4b578 /lib/elements/element.py
parent3893d13b52b2755ea134ec4d3a215ee807dbbc2e (diff)
remove 'TRIM after' and 'STOP after' from Params dialog
Diffstat (limited to 'lib/elements/element.py')
-rw-r--r--lib/elements/element.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/elements/element.py b/lib/elements/element.py
index 1c67d123..62e9745d 100644
--- a/lib/elements/element.py
+++ b/lib/elements/element.py
@@ -242,22 +242,10 @@ class EmbroideryElement(object):
return [self.strip_control_points(subpath) for subpath in path]
@property
- @param('trim_after',
- _('TRIM after'),
- tooltip=_('Trim thread after this object (for supported machines and file formats)'),
- type='boolean',
- default=False,
- sort_index=1000)
def trim_after(self):
return self.get_boolean_param('trim_after', False)
@property
- @param('stop_after',
- _('STOP after'),
- tooltip=_('Add STOP instruction after this object (for supported machines and file formats)'),
- type='boolean',
- default=False,
- sort_index=1000)
def stop_after(self):
return self.get_boolean_param('stop_after', False)