- added some icons to more push buttons inside the app

- a change of layout in Tools Database
This commit is contained in:
Marius Stanciu
2020-07-15 21:11:47 +03:00
committed by Marius
parent 5b80760ba7
commit 0fc6f41177
32 changed files with 70 additions and 27 deletions

View File

@@ -3096,6 +3096,7 @@ class IsoUI:
self.grid3.addWidget(separator_line, 18, 0, 1, 2)
self.apply_param_to_all = FCButton(_("Apply parameters to all tools"))
self.apply_param_to_all.setIcon(QtGui.QIcon(self.app.resource_location + '/param_all32.png'))
self.apply_param_to_all.setToolTip(
_("The parameters in the current form will be applied\n"
"on all the tools from the Tool Table.")
@@ -3296,6 +3297,7 @@ class IsoUI:
# ## Reset Tool
self.reset_button = QtWidgets.QPushButton(_("Reset Tool"))
self.reset_button.setIcon(QtGui.QIcon(self.app.resource_location + '/reset32.png'))
self.reset_button.setToolTip(
_("Will reset the tool parameters.")
)