- 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:
committed by
Marius Stanciu
parent
094060f6e1
commit
8a9c254a31
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user