- fixed an error in importing SVG that has a single line

- updated the POT file and the PO/MO files for Turkish language
This commit is contained in:
Marius Stanciu 2020-09-22 16:13:03 +03:00
parent 1d46b43c4f
commit c3bbbc40e0
5 changed files with 1103 additions and 1007 deletions

View File

@ -7,6 +7,11 @@ CHANGELOG for FlatCAM beta
=================================================
22.09.2020
- fixed an error in importing SVG that has a single line
- updated the POT file and the PO/MO files for Turkish language
20.09.2020
- in CNCJob UI Autolevelling: on manual add of probe points, only voronoi diagram is calculated

View File

@ -1132,9 +1132,12 @@ class Geometry(object):
merged_lines = linemerge(geos_lines)
geos = geos_polys
for l in merged_lines:
geos.append(l)
try:
for l in merged_lines:
geos.append(l)
except TypeError:
geos.append(merged_lines)
# Add to object
if self.solid_geometry is None:
self.solid_geometry = []

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff