- changed some of the signals from returnPressed to editingFinished due of now using the SpinBoxes

This commit is contained in:
Marius Stanciu
2019-10-14 06:49:40 +03:00
committed by Marius
parent e6ee0c67ec
commit 5580c49a92
6 changed files with 21 additions and 25 deletions

View File

@@ -1984,7 +1984,7 @@ class FlatCAMExcEditor(QtCore.QObject):
self.app.ui.delete_drill_btn.triggered.connect(self.on_delete_btn)
self.name_entry.returnPressed.connect(self.on_name_activate)
self.addtool_btn.clicked.connect(self.on_tool_add)
self.addtool_entry.returnPressed.connect(self.on_tool_add)
self.addtool_entry.editingFinished.connect(self.on_tool_add)
self.deltool_btn.clicked.connect(self.on_tool_delete)
# self.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
self.tools_table_exc.cellPressed.connect(self.on_row_selected)