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