mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
clarify splash message (plugin scan/discover)
This commit is contained in:
parent
700c7b225f
commit
1ed63c5247
1 changed files with 15 additions and 3 deletions
|
|
@ -242,20 +242,32 @@ PluginManager::refresh (bool cache_only)
|
|||
#endif
|
||||
#ifdef WINDOWS_VST_SUPPORT
|
||||
if (Config->get_use_windows_vst()) {
|
||||
BootMessage (_("Scanning Windows VST Plugins"));
|
||||
if (cache_only) {
|
||||
BootMessage (_("Scanning Windows VST Plugins"));
|
||||
} else {
|
||||
BootMessage (_("Discovering Windows VST Plugins"));
|
||||
}
|
||||
windows_vst_refresh (cache_only);
|
||||
}
|
||||
#endif // WINDOWS_VST_SUPPORT
|
||||
|
||||
#ifdef LXVST_SUPPORT
|
||||
if(Config->get_use_lxvst()) {
|
||||
BootMessage (_("Scanning Linux VST Plugins"));
|
||||
if (cache_only) {
|
||||
BootMessage (_("Scanning Linux VST Plugins"));
|
||||
} else {
|
||||
BootMessage (_("Discovering Linux VST Plugins"));
|
||||
}
|
||||
lxvst_refresh(cache_only);
|
||||
}
|
||||
#endif //Native linuxVST SUPPORT
|
||||
|
||||
#ifdef AUDIOUNIT_SUPPORT
|
||||
BootMessage (_("Scanning AU Plugins"));
|
||||
if (cache_only) {
|
||||
BootMessage (_("Scanning AU Plugins"));
|
||||
} else {
|
||||
BootMessage (_("Discovering AU Plugins"));
|
||||
}
|
||||
au_refresh (cache_only);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue