- fixed a bug in Panelize Plugin where the Geometry objects could not be panelized

- fixed some more Shapely 2.0 deprecation warnings in the Panelize Plugin
This commit is contained in:
Marius Stanciu
2021-11-21 20:34:05 +02:00
committed by Marius
parent 262ccdda28
commit c98066834a
3 changed files with 22 additions and 10 deletions

View File

@@ -528,7 +528,7 @@ class ShapeCollectionVisual(CompoundVisual):
self.update_lock.acquire(True)
# Merge shapes buffers
for data in self.data.values():
for data in list(self.data.values()):
if data['visible'] and 'line_pts' in data:
try:
line_pts[data['layer']] += data['line_pts']