diff --git a/src/core/automation_editor.cpp b/src/core/automation_editor.cpp index aa1626676..46a2e19f5 100644 --- a/src/core/automation_editor.cpp +++ b/src/core/automation_editor.cpp @@ -1814,6 +1814,10 @@ void automationEditor::play( void ) void automationEditor::stop( void ) { + if( !validPattern() ) + { + return; + } if( m_pattern->getTrack() && inBBEditor() ) { eng()->getBBEditor()->stop();