summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-04-01 15:28:04 +0200
committerGitHub <noreply@github.com>2023-04-01 15:28:04 +0200
commitb289c4a633b4fcce581a9edd8f1ded16be28eb5a (patch)
treea0df5fe6d964cf61de91761e19a26a758743f727
parentaf372c257b4cdd5675c4c87a8168df94aee67b71 (diff)
zigzag: do not care about dashes (#2188)
-rw-r--r--lib/elements/element.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/elements/element.py b/lib/elements/element.py
index d3690b4c..43ca5095 100644
--- a/lib/elements/element.py
+++ b/lib/elements/element.py
@@ -112,9 +112,6 @@ class EmbroideryElement(object):
self.get_param('satin_column', False) is False and
not self.node.style('stroke-dasharray')):
self.set_param('stroke_method', 'zigzag_stitch')
- # if the stroke method is a zigzag-stitch but we are receiving a dashed line, set it to running stitch
- if self.get_param('stroke_method', None) == 'zigzag_stitch' and self.node.style('stroke-dasharray'):
- self.set_param('stroke_method', 'running_stitch')
@property
def id(self):