- 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:
@@ -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
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user