summaryrefslogtreecommitdiff
path: root/lib/elements/stroke.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-12-07 15:20:11 +0100
committerGitHub <noreply@github.com>2024-12-07 15:20:11 +0100
commitb0105196889a463579aab21cd29bbf1abb96dab1 (patch)
treeee99321edd4fd1590430d3003e40468c6289dc7e /lib/elements/stroke.py
parent154309906f34bc3213eb4775dbebc58a1ec7f779 (diff)
Enable start end commands for satins (#3315)
Updates commands fill_start (_end) => starting_point (_end) stain_start (_end) and run_start (_end) => autoroute_start ripple_target => target_point Sets inkstitch svg version to 3
Diffstat (limited to 'lib/elements/stroke.py')
-rw-r--r--lib/elements/stroke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py
index c0da08fe..ff9718c5 100644
--- a/lib/elements/stroke.py
+++ b/lib/elements/stroke.py
@@ -515,7 +515,7 @@ class Stroke(EmbroideryElement):
return coords
def get_ripple_target(self):
- command = self.get_command('ripple_target')
+ command = self.get_command('target_point')
if command:
pos = [float(command.use.get("x", 0)), float(command.use.get("y", 0))]
transform = get_node_transform(command.use)