summaryrefslogtreecommitdiff
path: root/gtk2_ardour/new_user_wizard.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-10-24 14:56:58 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2019-10-24 21:32:46 -0600
commit84b34f9df1c39b3cc99bdfb1b8dc61db2e71e05a (patch)
treef71eeddb547ee0a35052f49f8592817286951f8e /gtk2_ardour/new_user_wizard.cc
parent362956dd7c2e9e2f4e5e5d84ed70f2f7a361b573 (diff)
change rationale for deciding whether the "discover plugins" button appears in the new user wizard
Diffstat (limited to 'gtk2_ardour/new_user_wizard.cc')
-rw-r--r--gtk2_ardour/new_user_wizard.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/new_user_wizard.cc b/gtk2_ardour/new_user_wizard.cc
index cfcb1bd591..84af87a6de 100644
--- a/gtk2_ardour/new_user_wizard.cc
+++ b/gtk2_ardour/new_user_wizard.cc
@@ -428,7 +428,8 @@ NewUserWizard::setup_final_page ()
VBox* vbox = manage (new VBox);
vbox->pack_start (*final_label, true, true);
- if (!Profile->get_mixbus()) {
+ /* Mixbus sets this parameter to true by default, Ardour sets it to false */
+ if (!Config->get_discover_vst_on_start()) {
vbox->pack_start (plugin_disco_button, true, false);
}
vbox->show ();