Skip to content
Snippets Groups Projects
Commit 209ad857 authored by jsiegle's avatar jsiegle
Browse files

Activate link to wiki in help menu

parent 89704eba
Branches
Tags
No related merge requests found
......@@ -425,8 +425,8 @@ void UIComponent::getCommandInfo(CommandID commandID, ApplicationCommandInfo& re
break;
case showHelp:
result.setInfo("Show help...", "Show some freakin' help.", "General", 0);
result.setActive(false);
result.setInfo("Show help...", "Take me to the GUI wiki.", "General", 0);
result.setActive(true);
break;
case resizeWindow:
......@@ -499,9 +499,11 @@ bool UIComponent::perform(const InvocationInfo& info)
}
case showHelp:
{
URL url = URL("https://open-ephys.atlassian.net/wiki/display/OEW/Open+Ephys+GUI");
url.launchInDefaultBrowser();
break;
}
case toggleProcessorList:
processorList->toggleState();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment