Large nasty commit in the form of a 5000 line patch chock-full of completely
[ardour.git] / gtk2_ardour / plugin_selector.cc
index 56f5fab9c8675aa8d862fd2c1ca287b0eaf919f4..16796df160df608cc7b77c59a99acacdac82c293 100644 (file)
@@ -36,6 +36,7 @@
 #include "i18n.h"
 
 using namespace ARDOUR;
+using namespace PBD;
 using namespace Gtk;
 
 PluginSelector::PluginSelector (PluginManager *mgr)
@@ -149,6 +150,9 @@ PluginSelector::PluginSelector (PluginManager *mgr)
        added_list.get_selection()->signal_changed().connect (mem_fun(*this, &PluginSelector::added_list_selection_changed));
 
        input_refiller ();
+#ifdef VST_SUPPORT
+       vst_refiller ();
+#endif
 }
 
 void
@@ -306,6 +310,9 @@ PluginSelector::btn_update_clicked()
 {
        manager->refresh ();
        input_refiller ();
+#ifdef VST_SUPPORT
+       vst_refiller ();
+#endif 
 }
 
 #ifdef VST_SUPPORT