diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2019-07-27 15:48:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-27 15:48:50 -0400 |
| commit | 833a8a971d8a73fbc42468a89d083e37a0bd6d8d (patch) | |
| tree | 4c38fd49d7cf813a2df1d07dbd32160d0e36373f /lib/extensions/layer_commands.py | |
| parent | 03af8b37276870efd97f7049ced006f6e01ef935 (diff) | |
| parent | 7ce4387ff6f8d4302ff374921d0b93b7b491b9a5 (diff) | |
Merge pull request #487 from inkstitch/no_import_jumps
remove additional jump stitches on import
Diffstat (limited to 'lib/extensions/layer_commands.py')
| -rw-r--r-- | lib/extensions/layer_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/layer_commands.py b/lib/extensions/layer_commands.py index c124ec95..e710e351 100644 --- a/lib/extensions/layer_commands.py +++ b/lib/extensions/layer_commands.py @@ -21,7 +21,7 @@ class LayerCommands(CommandsExtension): correction_transform = get_correction_transform(self.current_layer, child=True) for i, command in enumerate(commands): - ensure_symbol(command) + ensure_symbol(self.document, command) inkex.etree.SubElement(self.current_layer, SVG_USE_TAG, { |
