From 4286090570832186edab14b24c7dc8cd2fba7c65 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 17 Dec 2022 12:27:09 +0100 Subject: [PATCH] fix #1921 (#1922) --- lib/commands.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 6280fc0ca..f30d6423b 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -407,7 +407,18 @@ def add_commands(element, commands): def add_layer_commands(layer, commands): svg = layer.root - correction_transform = get_correction_transform(layer) + + if not layer.tag_name == 'svg': + correction_transform = get_correction_transform(layer) + else: + # No layer selected while trying to include only layer commands: return a error message and exit + # Since global and layer commands will not be inserted at the same time, we can check the first command only + if commands[0] in LAYER_COMMANDS: + inkex.errormsg(_('Please select a layer to include layer commands.')) + sys.exit(1) + + # global commands do not necesarrily need a layer + correction_transform = '' for i, command in enumerate(commands): ensure_symbol(svg, command)