Piano Roll - Fix retrigger with vol/pan sliders (#5271)

This commit is contained in:
Oskar Wallgren
2019-10-29 14:01:05 +01:00
committed by GitHub
parent 5e4e536bf0
commit 6c865c072d

View File

@@ -2175,7 +2175,7 @@ void PianoRoll::mouseMoveEvent( QMouseEvent * me )
m_pattern->instrumentTrack()->processInEvent( evt );
}
}
else if( n->isPlaying() )
else if( n->isPlaying() && !isSelection() )
{
// mouse not over this note, stop playing it.
m_pattern->instrumentTrack()->pianoModel()->handleKeyRelease( n->key() );