Add Preference to [not] automatically show Plugin Manager

This commit is contained in:
Robin Gareus 2022-10-23 19:26:07 +02:00
parent 63c78ebced
commit f9edc474ef
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 15 additions and 1 deletions

View file

@ -71,6 +71,7 @@
#include "session_dialog.h"
#include "session_archive_dialog.h"
#include "timers.h"
#include "ui_config.h"
#include "utils.h"
#ifdef WINDOWS_VST_SUPPORT
@ -542,7 +543,9 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
psd.start ();
}
if (!u.empty()) {
show_plugin_manager ();
if (scan_now || UIConfiguration::instance().get_show_manager_if_plugins_are_missing ()) {
show_plugin_manager ();
}
}
}