- in Tool Film added the page size and page orientation in case of saving the film as PDF file

- the application workspace has now a lot more options selectable in the Edit -> Preferences -> General -> GUI Preferences
This commit is contained in:
Marius Stanciu
2019-11-27 03:44:28 +02:00
committed by Marius
parent f1af9d7999
commit 58f24cbb37
7 changed files with 453 additions and 84 deletions

View File

@@ -381,6 +381,7 @@ class ToolPaint(FlatCAMTool, Gerber):
self.overlap = None
self.connect = None
self.contour = None
self.select_method = None
self.units = ''
self.paint_tools = {}
@@ -966,7 +967,6 @@ class ToolPaint(FlatCAMTool, Gerber):
self.connect = self.pathconnect_cb.get_value()
self.contour = self.paintcontour_cb.get_value()
self.select_method = self.selectmethod_combo.get_value()
self.obj_name = self.obj_combo.currentText()
# Get source object.
@@ -2018,7 +2018,7 @@ class ToolPaint(FlatCAMTool, Gerber):
except FlatCAMApp.GracefulException:
proc.done()
return
except Exception as e:
except Exception:
proc.done()
traceback.print_stack()
return
@@ -2493,7 +2493,7 @@ class ToolPaint(FlatCAMTool, Gerber):
except FlatCAMApp.GracefulException:
proc.done()
return
except Exception as e:
except Exception:
proc.done()
traceback.print_stack()
return