mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-31 22:23:54 +01:00
Module prefs in Preferences no longer experimental.
We do not now prompt about new modules at start up, unless you set a module to 'ask'. This means we can ship experimental modules with Audacity. Users can enable them if they want to, but aren't troubled by them otherwise.
This commit is contained in:
@@ -225,10 +225,15 @@ void ModuleManager::Initialize(CommandHandler &cmdHandler)
|
||||
continue;
|
||||
if( iModuleStatus == kModuleFailed )
|
||||
continue;
|
||||
// New module? You have to go and explicitly enable it.
|
||||
if( iModuleStatus == kModuleNew ){
|
||||
// To ensure it is noted in config file and so
|
||||
// appears on modules page.
|
||||
ModulePrefs::SetModuleStatus( files[i], kModuleNew);
|
||||
continue;
|
||||
}
|
||||
|
||||
if( (iModuleStatus == kModuleAsk ) ||
|
||||
(iModuleStatus == kModuleNew )
|
||||
)
|
||||
if( iModuleStatus == kModuleAsk )
|
||||
#endif
|
||||
// JKC: I don't like prompting for the plug-ins individually
|
||||
// I think it would be better to show the module prefs page,
|
||||
|
||||
Reference in New Issue
Block a user