pull/1966/head
Kaalleen 2022-12-17 12:27:09 +01:00 zatwierdzone przez GitHub
rodzic 355e1f3b9a
commit 4286090570
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -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)