Skip to content
Snippets Groups Projects
Commit 7e25e5ff authored by Matthieu Hodgkinson's avatar Matthieu Hodgkinson
Browse files

"Get more effects..." in realtime effect panel redirects to MuseHub

parent 286c13f5
No related branches found
No related tags found
No related merge requests found
...@@ -754,7 +754,9 @@ public: ...@@ -754,7 +754,9 @@ public:
int commandId = wxID_NONE; int commandId = wxID_NONE;
menu.AppendSeparator(); menu.AppendSeparator();
#if defined(__WXMSW__) || defined(__WXMAC__)
menu.Append(wxID_MORE, _("Get more effects...")); menu.Append(wxID_MORE, _("Get more effects..."));
#endif
menu.Bind(wxEVT_MENU, [&](wxCommandEvent evt) { commandId = evt.GetId(); }); menu.Bind(wxEVT_MENU, [&](wxCommandEvent evt) { commandId = evt.GetId(); });
...@@ -763,7 +765,7 @@ public: ...@@ -763,7 +765,7 @@ public:
if(commandId == wxID_REMOVE) if(commandId == wxID_REMOVE)
return wxString {}; return wxString {};
else if(commandId == wxID_MORE) else if(commandId == wxID_MORE)
OpenInDefaultBrowser("https://plugins.audacityteam.org/"); OpenInDefaultBrowser("https://www.musehub.com");
else else
return visitor.GetPluginID(commandId).GET(); return visitor.GetPluginID(commandId).GET();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment