| 71 | } |
| 72 | |
| 73 | void EffectsModule::onInit(const muse::IApplication::RunMode&) |
| 74 | { |
| 75 | PluginManager::Get().Initialize([](const FilePath& localFileName) { |
| 76 | return std::make_unique<au3::EffectSettings>(localFileName.ToStdString()); |
| 77 | }); |
| 78 | |
| 79 | m_actionsController->init(); |
| 80 | m_uiActions->init(); |
| 81 | m_provider->reloadEffects(); |
| 82 | } |
| 83 | |
| 84 | void EffectsModule::onDelayedInit() |
| 85 | { |
nothing calls this directly
no test coverage detected