Skip to content

Commit

Permalink
changed tooltips for the menu bar
Browse files Browse the repository at this point in the history
  • Loading branch information
anh committed Aug 15, 2023
1 parent c129b88 commit e935f58
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pyqt_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,22 @@ def initUI(self):
toolbar = self.addToolBar("ToolBar")

run_action = qw.QAction('Output', self)
run_action.setToolTip('Output the command the would be ran when plotted')

plot_action = qw.QAction('Plot', self)
plot_action.setToolTip('Plot the output of the command ran under these configurations')

edit_action = qw.QAction('Edit', self)
edit_action.setToolTip('Open the input file for editing')

help_action = qw.QAction('Help', self)
help_action.setToolTip('Display details about each configuration field')

reset_action = qw.QAction('Reset', self)
reset_action.setToolTip('Revert configuration options to default settings')

quit_action = qw.QAction('Quit', self)
quit_action.setToolTip('Exits the application')

toolbar.addAction(run_action)
toolbar.addSeparator()
Expand Down

0 comments on commit e935f58

Please sign in to comment.