From 7e25e5ffa9a1dbb66be518295bf00e0b0be525b9 Mon Sep 17 00:00:00 2001
From: Matthieu Hodgkinson <saintmatthieu@gmail.com>
Date: Fri, 17 May 2024 10:30:19 +0200
Subject: [PATCH] "Get more effects..." in realtime effect panel redirects to
 MuseHub

---
 src/RealtimeEffectPanel.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/RealtimeEffectPanel.cpp b/src/RealtimeEffectPanel.cpp
index 32bd6105f5..cc083f3bdc 100644
--- a/src/RealtimeEffectPanel.cpp
+++ b/src/RealtimeEffectPanel.cpp
@@ -754,7 +754,9 @@ public:
       int commandId = wxID_NONE;
 
       menu.AppendSeparator();
+#if defined(__WXMSW__) || defined(__WXMAC__)
       menu.Append(wxID_MORE, _("Get more effects..."));
+#endif
 
       menu.Bind(wxEVT_MENU, [&](wxCommandEvent evt) { commandId = evt.GetId(); });
 
@@ -763,7 +765,7 @@ public:
          if(commandId == wxID_REMOVE)
             return wxString {};
          else if(commandId == wxID_MORE)
-            OpenInDefaultBrowser("https://plugins.audacityteam.org/");
+            OpenInDefaultBrowser("https://www.musehub.com");
          else
             return visitor.GetPluginID(commandId).GET();
       }
-- 
GitLab