- updated the French Translation (by Olivier Cornet)

- fixed issue in Corner Markers Tool that crashed the app if only one corner was checked
- fixed issue in Isolation Tool where Area Isolation selection was not working
This commit is contained in:
Marius Stanciu
2020-11-01 15:30:36 +02:00
committed by Marius Stanciu
parent 094060f6e1
commit 8a9c254a31
6 changed files with 1565 additions and 1770 deletions

View File

@@ -255,8 +255,12 @@ class ToolCorners(AppTool):
geo_buff_list = MultiPolygon(geo_buff_list)
geo_buff_list = geo_buff_list.buffer(0)
for poly in geo_buff_list:
s_list.append(poly)
try:
for poly in geo_buff_list:
s_list.append(poly)
except TypeError:
s_list.append(geo_buff_list)
g_obj.solid_geometry = MultiPolygon(s_list)
def replot(self, obj, run_thread=True):