From 11c6c2f6fdfdf7ebd1286079d50ba4af72ad076d Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 9 May 2018 20:58:23 -0400 Subject: [PATCH] Fix manage plugins URL --- src/app/PluginManagerWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/PluginManagerWidget.cpp b/src/app/PluginManagerWidget.cpp index 31a60d57..49f2b268 100644 --- a/src/app/PluginManagerWidget.cpp +++ b/src/app/PluginManagerWidget.cpp @@ -39,7 +39,7 @@ struct StatusLabel : Label { struct ManageButton : Button { void onAction(EventAction &e) override { std::thread t([&]() { - systemOpenBrowser("https://vcvrack.com/"); + systemOpenBrowser("https://vcvrack.com/plugins.html"); }); t.detach(); }