summaryrefslogtreecommitdiff
path: root/lib/marker.py
diff options
context:
space:
mode:
authorAndreas <v.andreas.1@web.de>2022-01-28 21:54:20 +0100
committerKaalleen <reni@allenka.de>2022-05-04 19:01:50 +0200
commit8d19cdc59d00836fdf3ef037f31e7130771f84d2 (patch)
tree6b392c56b1096fe6a08c4c745db2d6cef3082d9a /lib/marker.py
parentcc051bcdba88c985a040a508be2ccc8878e09181 (diff)
adjusted selection_to_guide_line to match new marker creation way
Diffstat (limited to 'lib/marker.py')
-rw-r--r--lib/marker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/marker.py b/lib/marker.py
index 4f262abe..1d9145e7 100644
--- a/lib/marker.py
+++ b/lib/marker.py
@@ -33,5 +33,5 @@ def set_marker(node, position, marker):
style = node.get('style') or ''
style = style.split(";")
style = [i for i in style if not i.startswith('marker-%s' % position)]
- style.append('marker-%s:url(#inkstitch-pattern-marker)' % position)
+ style.append('marker-%s:url(#inkstitch-%s-marker)' % (position, marker))
node.set('style', ";".join(style))