summaryrefslogtreecommitdiff
path: root/lib/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/commands.py')
-rw-r--r--lib/commands.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/commands.py b/lib/commands.py
index ea6d3509..cb2a74d5 100644
--- a/lib/commands.py
+++ b/lib/commands.py
@@ -60,7 +60,6 @@ COMMANDS = {
}
OBJECT_COMMANDS = ["fill_start", "fill_end", "satin_start", "satin_end", "stop", "trim", "ignore_object", "satin_cut_point"]
-GROUP_COMMANDS = ["pattern_group"]
LAYER_COMMANDS = ["ignore_layer"]
GLOBAL_COMMANDS = ["origin", "stop_position"]
@@ -187,12 +186,6 @@ def find_commands(node):
return commands
-def group_commands(node, command):
- xpath = "./ancestor::svg:g/svg:use[@xlink:href='#inkstitch_%(command)s']" % dict(id=node.get('id'), command=command)
- group_command = node.xpath(xpath, namespaces=inkex.NSS)
- return group_command
-
-
def layer_commands(layer, command):
"""Find standalone (unconnected) command symbols in this layer."""