summaryrefslogtreecommitdiff
path: root/lib/stitches/auto_run.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-04-19 07:11:57 +0200
committerGitHub <noreply@github.com>2025-04-19 07:11:57 +0200
commitb009a5355e7ceea477ea55eacba2149a9398b37e (patch)
tree3061490b8f44638676b82bcc1adbbe11191c94c2 /lib/stitches/auto_run.py
parent54bc44daaf62ed1e65d7eb48e5cd245c252c14c2 (diff)
duplicate-consistant autoroute element selection (#3638)
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