diff --git a/plugins/peak_controller_effect/peak_controller_effect.cpp b/plugins/peak_controller_effect/peak_controller_effect.cpp index 7ca7cbbb6..59c91f3d1 100644 --- a/plugins/peak_controller_effect/peak_controller_effect.cpp +++ b/plugins/peak_controller_effect/peak_controller_effect.cpp @@ -67,7 +67,10 @@ PeakControllerEffect::PeakControllerEffect( m_autoController( NULL ) { m_autoController = new PeakController( Engine::getSong(), this ); - Engine::getSong()->addController( m_autoController ); + if( !Engine::getSong()->isLoadingProject() ) + { + Engine::getSong()->addController( m_autoController ); + } PeakController::s_effects.append( this ); }