- whenever a FlatCAM tool is activated, if the notebook side is hidden it will be unhidden

- reactivated the Voronoi classed
- added a new parameter named Offset in the Excellon tool table - work in progress
This commit is contained in:
Marius Stanciu
2019-02-12 04:00:11 +02:00
committed by Marius S
parent 4609f61546
commit d0641458e4
17 changed files with 391 additions and 236 deletions

View File

@@ -419,8 +419,8 @@ class ExcellonObjectUI(ObjectUI):
self.tools_table = FCTable()
self.tools_box.addWidget(self.tools_table)
self.tools_table.setColumnCount(4)
self.tools_table.setHorizontalHeaderLabels(['#', 'Diameter', 'D', 'S'])
self.tools_table.setColumnCount(5)
self.tools_table.setHorizontalHeaderLabels(['#', 'Diameter', 'D', 'S', 'Offset'])
self.tools_table.setSortingEnabled(False)
self.tools_table.horizontalHeaderItem(0).setToolTip(
@@ -436,6 +436,10 @@ class ExcellonObjectUI(ObjectUI):
self.tools_table.horizontalHeaderItem(3).setToolTip(
"The number of Slot holes. Holes that are created by\n"
"milling them with an endmill bit.")
self.tools_table.horizontalHeaderItem(4).setToolTip(
"Some drill bits (the larger ones) need to drill deeper\n"
"to create the desired exit hole diameter due of the tip shape.\n"
"The value here can compensate the Cut Z parameter.")
self.empty_label = QtWidgets.QLabel('')
self.tools_box.addWidget(self.empty_label)