summaryrefslogtreecommitdiff
path: root/lib/commands.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2022-05-24 19:40:30 +0200
committerGitHub <noreply@github.com>2022-05-24 19:40:30 +0200
commite968f814f718c32742466bfa50cb62f0ad7b2d54 (patch)
treebc02fc1bf3eb7a3f7c939d76e6323c1cdfe0976e /lib/commands.py
parentca07b1b267b0f401b947c984e67ee15de9e16c8f (diff)
Add ripple stitch feature (#1667)
Diffstat (limited to 'lib/commands.py')
-rw-r--r--lib/commands.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/commands.py b/lib/commands.py
index 1d235759..a7affb6d 100644
--- a/lib/commands.py
+++ b/lib/commands.py
@@ -27,6 +27,9 @@ COMMANDS = {
"fill_end": N_("Fill stitch ending position"),
# L10N command attached to an object
+ "ripple_target": N_("Ripple stitch target position"),
+
+ # L10N command attached to an object
"run_start": N_("Auto-route running stitch starting position"),
# L10N command attached to an object
@@ -60,7 +63,8 @@ COMMANDS = {
"stop_position": N_("Jump destination for Stop commands (a.k.a. \"Frame Out position\")."),
}
-OBJECT_COMMANDS = ["fill_start", "fill_end", "run_start", "run_end", "satin_start", "satin_end", "stop", "trim", "ignore_object", "satin_cut_point"]
+OBJECT_COMMANDS = ["fill_start", "fill_end", "ripple_target", "run_start", "run_end", "satin_start", "satin_end",
+ "stop", "trim", "ignore_object", "satin_cut_point"]
FREE_MOVEMENT_OBJECT_COMMANDS = ["run_start", "run_end", "satin_start", "satin_end"]
LAYER_COMMANDS = ["ignore_layer"]
GLOBAL_COMMANDS = ["origin", "stop_position"]