Przeglądaj źródła

- fixed Cutout Tool to work with the endxy parameter

Marius Stanciu 5 lat temu
rodzic
commit
77a1ba67c8
2 zmienionych plików z 3 dodań i 0 usunięć
  1. 1 0
      CHANGELOG.md
  2. 2 0
      appTools/ToolCutOut.py

+ 1 - 0
CHANGELOG.md

@@ -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
 

+ 2 - 0
appTools/ToolCutOut.py

@@ -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"],