- fixed some issues in Paint Tool

This commit is contained in:
Marius Stanciu 2020-03-30 23:56:38 +03:00
parent 8a2f5fed05
commit 9a74139497
2 changed files with 4 additions and 3 deletions

View File

@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing.
30.03.2020
- working to update the Paint Tool
- fixed some issues in Paint Tool
29.03.2020

View File

@ -984,9 +984,9 @@ class ToolPaint(FlatCAMTool, Gerber):
self.default_data.update({
"name": '_paint',
"plot": self.app.defaults["geometry_plot"],
"cutz": float(self.cutz_entry.get_value()),
"vtipdia": float(self.tipdia_entry.get_value()),
"vtipangle": float(self.tipangle_entry.get_value()),
"cutz": float(self.app.defaults["tools_paintcutz"],),
"vtipdia": float(self.app.defaults["tools_painttipdia"],),
"vtipangle": float(self.app.defaults["tools_painttipangle"],),
"travelz": float(self.app.defaults["geometry_travelz"]),
"feedrate": float(self.app.defaults["geometry_feedrate"]),
"feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),