Skip to content

Commit

Permalink
Merge pull request #230 from jpgill86/ui-help
Browse files Browse the repository at this point in the history
Add "User interface guide" link to Help menu in standalone app
  • Loading branch information
jpgill86 committed Mar 2, 2020
2 parents 6edc203 + fc2b22e commit 55379fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions neurotic/gui/standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ def create_menus(self):
do_open_docs = help_menu.addAction('Documentation')
do_open_docs.triggered.connect(lambda: open_url(get_versioned_docs_url()))

do_open_ui_guide = help_menu.addAction('User interface guide')
do_open_ui_guide.triggered.connect(lambda: open_url('https://ephyviewer.readthedocs.io/en/latest/interface.html'))

do_open_release_notes = help_menu.addAction('Release notes')
do_open_release_notes.triggered.connect(lambda: open_url('https://neurotic.readthedocs.io/en/latest/releasenotes.html'))

Expand Down

0 comments on commit 55379fd

Please sign in to comment.