Skip to content

Commit

Permalink
Add tooltips for REPL and Settings buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
kephale authored and ctrueden committed Jul 21, 2023
1 parent ce9a977 commit 4271ffa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/napari_imagej/widgets/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ def __init__(self, viewer: Viewer):
self.layout().addWidget(self.gui_button)

self.repl_button: REPLButton = REPLButton(viewer)
self.repl_button.setToolTip("Show/hide the SciJava REPL")
self.layout().addWidget(self.repl_button)

self.settings_button: SettingsButton = SettingsButton(viewer)
self.settings_button.setToolTip("Show napari-imagej settings")
self.layout().addWidget(self.settings_button)

if settings.headless():
Expand Down

0 comments on commit 4271ffa

Please sign in to comment.