summaryrefslogtreecommitdiff
path: root/lib/extensions/auto_satin.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/extensions/auto_satin.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/extensions/auto_satin.py')
-rw-r--r--lib/extensions/auto_satin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/auto_satin.py b/lib/extensions/auto_satin.py
index 8536e4ee..d5456bcb 100644
--- a/lib/extensions/auto_satin.py
+++ b/lib/extensions/auto_satin.py
@@ -22,10 +22,10 @@ class AutoSatin(CommandsExtension):
self.arg_parser.add_argument("-p", "--preserve_order", dest="preserve_order", type=inkex.Boolean, default=False)
def get_starting_point(self):
- return self.get_point("satin_start")
+ return self.get_point("autoroute_start")
def get_ending_point(self):
- return self.get_point("satin_end")
+ return self.get_point("autoroute_end")
def get_point(self, command_type):
command = None