summaryrefslogtreecommitdiff
path: root/lib/commands.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-08-24 16:29:13 -0400
committerLex Neva <github.com@lexneva.name>2018-08-24 20:56:41 -0400
commit53f92df05635668783a6b9407a01326de14a1291 (patch)
treebd249267b3cdb965b9c61f644058d679bab48e67 /lib/commands.py
parent7f9208ae2a97026019ff36d28faf37a5c1b9b270 (diff)
add 'Add Commands' extension
Diffstat (limited to 'lib/commands.py')
-rw-r--r--lib/commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/commands.py b/lib/commands.py
index 3a4ca230..db3c8a71 100644
--- a/lib/commands.py
+++ b/lib/commands.py
@@ -31,11 +31,12 @@ COMMANDS = {
N_("origin"): N_("Origin for exported embroidery files"),
# L10N command that affects entire document
- N_("stop_point"): N_("Jump destination for Stop commands (a.k.a. \"Frame Out position\")."),
+ N_("stop_position"): N_("Jump destination for Stop commands (a.k.a. \"Frame Out position\")."),
}
OBJECT_COMMANDS = ["fill_start", "fill_end", "stop", "trim", "ignore_object"]
LAYER_COMMANDS = ["ignore_layer"]
+GLOBAL_COMMANDS = ["origin", "stop_position"]
class CommandParseError(Exception):