summaryrefslogtreecommitdiff
path: root/lib/stitches/auto_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitches/auto_run.py')
-rw-r--r--lib/stitches/auto_run.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/stitches/auto_run.py b/lib/stitches/auto_run.py
index 760d0393..85c575bf 100644
--- a/lib/stitches/auto_run.py
+++ b/lib/stitches/auto_run.py
@@ -273,14 +273,17 @@ def create_element(path, position, direction, element):
if direction == "autorun":
label = _("AutoRun %d") % index
dasharray = 'none'
+ path_type = 'autorun-top'
else:
label = _("AutoRun Underpath %d") % index
dasharray = '2 1.1'
+ path_type = 'autorun-underpath'
node = inkex.PathElement()
node.set("id", generate_unique_id(element.node, el_id))
node.set(INKSCAPE_LABEL, label)
node.set("d", path)
+ node.set("inkstitch:path_type", path_type)
node.set("style", element.node.style)
node.style["fill"] = 'none'
node.style["stroke-dasharray"] = dasharray