diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-06-30 22:49:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-30 22:49:18 +0200 |
| commit | e52886a64a4e76c3fdc49df95c85655da3c4f7f4 (patch) | |
| tree | 88a4edee630df0947553ced79fb6eb9dc510ccea /lib/elements | |
| parent | 7c06dee44ac7951a5db406eb829100a5bc3e5887 (diff) | |
Various fixes (#3028)
* several thread palette extension fixes
* fix svg tartan when original shape is invalid
* tartan stroke spaces
* style
* fix tartan color substituion at pattern start
* ripple: do not render too small paths
* use less space for params warning headline
* fix clone shape path
* zip export template fix (typo)
* add realistic stitch plan output warning (help tab)
Diffstat (limited to 'lib/elements')
| -rw-r--r-- | lib/elements/clone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/clone.py b/lib/elements/clone.py index 55f6465b..9a89b6ff 100644 --- a/lib/elements/clone.py +++ b/lib/elements/clone.py @@ -195,7 +195,7 @@ class Clone(EmbroideryElement): transform = Transform(self.node.composed_transform()) path = path.transform(transform) path = path.to_superpath() - return MultiLineString(path) + return MultiLineString(path[0]) def center(self, source_node): transform = get_node_transform(self.node.getparent()) |
