summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-12-12 20:39:55 +0100
committerRobin Gareus <robin@gareus.org>2015-12-12 20:39:55 +0100
commit6554f0f93d5cfdc06a9f6f5407a080c32c6864a4 (patch)
tree90da28bed02f35e45b49b59b7ec5d0082577efcc /gtk2_ardour
parentbb7c857a698f1eb208bd83a57eeca2b81b75cdb5 (diff)
display VST paths
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/rc_option_editor.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index 5bb5d4a291..efaccc7be6 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -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