- small fix in ToolCutout Plugin when trying to set a checkbox state with a float value which still works in Windows but creates issues in other OS's

This commit is contained in:
Marius Stanciu
2022-09-25 05:57:35 +03:00
committed by Marius
parent 9b08191660
commit 8f774df30b
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ CHANGELOG for FlatCAM Evo beta
25.09.2022
- added a new setting in Preferences ("3D compatibility") controlled by a checkbox. If the checkbox is checked then multithreading is disabled for the 3D mode (lower performance but perhaps more compatibility, especially for Linux) - this was done from the research done by Matti Eiden on bitbucket
- small fix in ToolCutout Plugin when trying to set a checkbox state with a float value which still works in Windows but creates issues in other OS's
10.09.2022

View File

@@ -379,7 +379,7 @@ class CutOut(AppTool):
self.ui.gaps.set_value(tool_dict["tools_cutout_gaps_ff"])
self.ui.cutz_entry.set_value(float(tool_dict["tools_cutout_z"]))
self.ui.mpass_cb.set_value(float(tool_dict["tools_cutout_mdepth"]))
self.ui.mpass_cb.set_value(bool(tool_dict["tools_cutout_mdepth"]))
self.ui.maxdepth_entry.set_value(float(tool_dict["tools_cutout_depthperpass"]))
def on_cutout_type(self, val):