- fixed bug that crashed the app when trying to add a tool without a tool diameter value

This commit is contained in:
Marius Stanciu
2019-07-30 13:00:17 +03:00
committed by Marius
parent 02c8cfb085
commit 7bca0678ea
3 changed files with 21 additions and 5 deletions

View File

@@ -3583,7 +3583,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
tooldia = float(self.ui.addtool_entry.get_value().replace(',', '.'))
except ValueError:
change_message = True
tooldia = self.options["cnctooldia"][0]
tooldia = float(self.options["cnctooldia"][0])
if tooldia is None:
self.build_ui()
@@ -3668,10 +3668,14 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
else:
change_message = False
self.app.inform.emit(_(
"[ERROR_NOTCL] Default Tool added. Wrong value format entered."
"[WARNING_NOTCL] Default Tool added. Wrong value format entered."
))
self.build_ui()
# if there is no tool left in the Tools Table, enable the parameters GUI
if self.ui.geo_tools_table.rowCount() != 0:
self.ui.geo_param_frame.setDisabled(False)
def on_tool_copy(self, all=None):
self.ui_disconnect()
@@ -3775,7 +3779,6 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
self.build_ui()
def on_tool_delete(self, all=None):
self.ui_disconnect()
if all is None:
@@ -3855,6 +3858,10 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
obj_active.options['xmax'] = 0
obj_active.options['ymax'] = 0
# if there is no tool left in the Tools Table, disable the parameters GUI
if self.ui.geo_tools_table.rowCount() == 0:
self.ui.geo_param_frame.setDisabled(True)
def on_row_selection_change(self):
self.update_ui()