summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-03-01 00:56:24 +0100
committerRobin Gareus <robin@gareus.org>2014-03-01 01:01:42 +0100
commit597db6421ada94023d6087c9eafcdfc5d7610502 (patch)
treef3fc0653746c3574bf4bf1fd4d60f245e863c887 /gtk2_ardour
parentea57962765e7c6cec3c73fd6166e823fef9a089e (diff)
re-work VST paths configuration.
environment vars provide the "default", but are no longer relevant once ardour-internal paths are configured.
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/rc_option_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index 77520d82d2..3fee8e37b4 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -1106,7 +1106,7 @@ private:
Gtkmm2ext::PathsDialog *pd = new Gtkmm2ext::PathsDialog (
_("Set Windows VST Search Path"),
_rc_config->get_plugin_path_vst(),
- PluginManager::instance().get_windows_vst_path()
+ PluginManager::instance().get_default_windows_vst_path()
);
ResponseType r = (ResponseType) pd->run ();
pd->hide();
@@ -1121,7 +1121,7 @@ private:
Gtkmm2ext::PathsDialog *pd = new Gtkmm2ext::PathsDialog (
_("Set Linux VST Search Path"),
_rc_config->get_plugin_path_lxvst(),
- PluginManager::instance().get_lxvst_path()
+ PluginManager::instance().get_default_lxvst_path()
);
ResponseType r = (ResponseType) pd->run ();
pd->hide();