- Tool Drilling - moved some of the Excellon Preferences related to drilling operation to it's own group Drilling Tool Options

- optimized the CNCJob UI to look like other parts of the app
This commit is contained in:
Marius Stanciu
2020-07-10 04:39:25 +03:00
parent 391a28282e
commit 0dee41e03c
14 changed files with 502 additions and 693 deletions

View File

@@ -573,7 +573,7 @@ class App(QtCore.QObject):
if name == 'hpgl':
continue
self.ui.excellon_defaults_form.excellon_opt_group.pp_excellon_name_cb.addItem(name)
self.ui.tools_defaults_form.tools_drill_group.pp_excellon_name_cb.addItem(name)
# add ToolTips for the Preprocessor ComboBoxes in Preferences
for it in range(self.ui.tools_defaults_form.tools_solderpaste_group.pp_combo.count()):
@@ -583,9 +583,9 @@ class App(QtCore.QObject):
self.ui.geometry_defaults_form.geometry_opt_group.pp_geometry_name_cb.setItemData(
it, self.ui.geometry_defaults_form.geometry_opt_group.pp_geometry_name_cb.itemText(it),
QtCore.Qt.ToolTipRole)
for it in range(self.ui.excellon_defaults_form.excellon_opt_group.pp_excellon_name_cb.count()):
self.ui.excellon_defaults_form.excellon_opt_group.pp_excellon_name_cb.setItemData(
it, self.ui.excellon_defaults_form.excellon_opt_group.pp_excellon_name_cb.itemText(it),
for it in range(self.ui.tools_defaults_form.tools_drill_group.pp_excellon_name_cb.count()):
self.ui.tools_defaults_form.tools_drill_group.pp_excellon_name_cb.setItemData(
it, self.ui.tools_defaults_form.tools_drill_group.pp_excellon_name_cb.itemText(it),
QtCore.Qt.ToolTipRole)
# ###########################################################################################################