diff options
| author | Lex Neva <github.com@lexneva.name> | 2021-08-07 12:37:17 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2021-08-07 12:37:17 -0400 |
| commit | 923ff3cb97c764f9999ac908c9b3aa321fd02301 (patch) | |
| tree | b266ad119182475ced5797857bb53ad31d76f34b /lib/elements/clone.py | |
| parent | b1af926ea6018b869d2401aeece46318b88d9a5d (diff) | |
fix more patch references
Diffstat (limited to 'lib/elements/clone.py')
| -rw-r--r-- | lib/elements/clone.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elements/clone.py b/lib/elements/clone.py index 6dafa63d..a9e10d94 100644 --- a/lib/elements/clone.py +++ b/lib/elements/clone.py @@ -93,7 +93,7 @@ class Clone(EmbroideryElement): return elements - def to_patches(self, last_patch=None): + def to_stitch_groups(self, last_patch=None): patches = [] source_node = get_clone_source(self.node) @@ -123,7 +123,7 @@ class Clone(EmbroideryElement): elements = self.clone_to_element(self.node) for element in elements: - patches.extend(element.to_patches(last_patch)) + patches.extend(element.to_stitch_groups(last_patch)) return patches |
