- fixed Cutout Tool to work with the endxy parameter

This commit is contained in:
Marius Stanciu 2020-10-21 13:08:46 +03:00 committed by Marius
parent 261adbb861
commit 77a1ba67c8
2 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ CHANGELOG for FlatCAM beta
- updated the translations strings to the changes in the source code
- some strings changed
- fixed crash on using shortcut for creating a new Document Object
- fixed Cutout Tool to work with the endxy parameter
20.10.2020

View File

@ -217,6 +217,7 @@ class CutOut(AppTool):
"toolchangez": float(self.app.defaults["geometry_toolchangez"]),
"startz": self.app.defaults["geometry_startz"],
"endz": float(self.app.defaults["geometry_endz"]),
"endxy": self.app.defaults["geometry_endxy"],
"area_exclusion": self.app.defaults["geometry_area_exclusion"],
"area_shape": self.app.defaults["geometry_area_shape"],
"area_strategy": self.app.defaults["geometry_area_strategy"],
@ -414,6 +415,7 @@ class CutOut(AppTool):
"toolchangez": float(self.app.defaults["geometry_toolchangez"]),
"startz": self.app.defaults["geometry_startz"],
"endz": float(self.app.defaults["geometry_endz"]),
"endxy": self.app.defaults["geometry_endxy"],
"area_exclusion": self.app.defaults["geometry_area_exclusion"],
"area_shape": self.app.defaults["geometry_area_shape"],
"area_strategy": self.app.defaults["geometry_area_strategy"],