summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2022-05-02 14:47:43 -0400
committerKaalleen <reni@allenka.de>2022-05-04 19:18:33 +0200
commit60fb7d0a9efa43d3b58867927ecede6cfdc5ab21 (patch)
tree80db4bc7734d77c4d41be771f77f0430224469dc /lib/elements
parent8a1f70a6cdcbf7c599d9f00837996a0f6734f780 (diff)
fix more shapely deprecations
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/fill_stitch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py
index 3b87ea0c..4157d3fb 100644
--- a/lib/elements/fill_stitch.py
+++ b/lib/elements/fill_stitch.py
@@ -562,7 +562,7 @@ class FillStitch(EmbroideryElement):
def do_tangential_fill(self, last_patch, starting_point):
stitch_groups = []
- polygons = list(self.fill_shape)
+ polygons = self.fill_shape.geoms
if not starting_point:
starting_point = (0, 0)
for poly in polygons: