From 0c54e56f96993831dc16433161094db916b9c4af Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 11 Dec 2016 15:46:53 +0100 Subject: [PATCH] Add support for MacVST hidden/favorites --- libs/ardour/plugin_manager.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index 8f9f5a90c0..3a0a8fab59 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -1372,6 +1372,8 @@ PluginManager::load_statuses () type = Windows_VST; } else if (stype == "LXVST") { type = LXVST; + } else if (stype == "MacVST") { + type = MacVST; } else if (stype == "Lua") { type = Lua; } else {