display VST paths
authorRobin Gareus <robin@gareus.org>
Sat, 12 Dec 2015 19:39:55 +0000 (20:39 +0100)
committerRobin Gareus <robin@gareus.org>
Sat, 12 Dec 2015 19:39:55 +0000 (20:39 +0100)
gtk2_ardour/rc_option_editor.cc

index 5bb5d4a291d2437075e475018ac370c97e8d23d0..efaccc7be611ef20c887c7a400f50b30c969043b 100644 (file)
@@ -2781,6 +2781,13 @@ if (!Profile->get_mixbus()) {
                        new RcActionButton (_("Edit"),
                                sigc::mem_fun (*this, &RCOptionEditor::edit_lxvst_path),
                        _("Linux VST Path:")));
+
+       add_option (_("Plugins"),
+                       new RcConfigDisplay (
+                               "plugin-path-lxvst",
+                               _("Path:"),
+                               sigc::mem_fun (*_rc_config, &RCConfiguration::get_plugin_path_lxvst),
+                               ':'));
 #endif
 
 #ifdef WINDOWS_VST_SUPPORT
@@ -2788,6 +2795,12 @@ if (!Profile->get_mixbus()) {
                        new RcActionButton (_("Edit"),
                                sigc::mem_fun (*this, &RCOptionEditor::edit_vst_path),
                        _("Windows VST Path:")));
+       add_option (_("Plugins"),
+                       new RcConfigDisplay (
+                               "plugin-path-vst",
+                               _("Path:"),
+                               sigc::mem_fun (*_rc_config, &RCConfiguration::get_plugin_path_vst),
+                               ';'));
 #endif
 
 #ifdef AUDIOUNIT_SUPPORT