summaryrefslogtreecommitdiff
path: root/gtk2_ardour/instrument_selector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-29 01:26:46 +0200
committerRobin Gareus <robin@gareus.org>2016-04-29 02:57:48 +0200
commit25f65d0b9009adc409972ee4b2591c611e8a48ec (patch)
tree502da5a9e6faa8e397ec4bb11505d6e21a8802a0 /gtk2_ardour/instrument_selector.cc
parente56c8f0309aa35265785f4a31fac1bd38f868fd1 (diff)
include lua processors in plugin-selector
Diffstat (limited to 'gtk2_ardour/instrument_selector.cc')
-rw-r--r--gtk2_ardour/instrument_selector.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/instrument_selector.cc b/gtk2_ardour/instrument_selector.cc
index 3df05f9512..d4f89e2f63 100644
--- a/gtk2_ardour/instrument_selector.cc
+++ b/gtk2_ardour/instrument_selector.cc
@@ -71,6 +71,7 @@ InstrumentSelector::build_instrument_list()
PluginInfoList all_plugs;
all_plugs.insert(all_plugs.end(), manager.ladspa_plugin_info().begin(), manager.ladspa_plugin_info().end());
+ all_plugs.insert(all_plugs.end(), manager.lua_plugin_info().begin(), manager.lua_plugin_info().end());
#ifdef WINDOWS_VST_SUPPORT
all_plugs.insert(all_plugs.end(), manager.windows_vst_plugin_info().begin(), manager.windows_vst_plugin_info().end());
#endif