- fixed issue in ToolPaint that could not allow area painting of a geometry that was a list and not a Geometric element (polygon or MultiPolygon)

- fixed UI showing before the initialization of FlatCAM is finished when the last state of GUI was maximized
- finished updating the TclCommand cncjob to work for multi-geo Geometry objects with the parameters from the args
This commit is contained in:
Marius Stanciu
2019-09-15 13:37:06 +03:00
committed by Marius
parent 21ca024324
commit 30f00abce8
6 changed files with 68 additions and 41 deletions

View File

@@ -2057,7 +2057,7 @@ class ToolPaint(FlatCAMTool, Gerber):
pass
# this is were heavy lifting is done and creating the geometry to be painted
target_geo = obj.solid_geometry
target_geo = MultiPolygon(obj.solid_geometry)
if isinstance(obj, FlatCAMGerber):
if self.app.defaults["tools_paint_plotting"] == 'progressive':