Skip to content

Commit

Permalink
Piano Roll - Fix retrigger with vol/pan sliders (LMMS#5271)
Browse files Browse the repository at this point in the history
  • Loading branch information
zonkmachine authored Oct 29, 2019
1 parent 117f462 commit 5f9ab16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editors/PianoRoll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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() );
Expand Down

0 comments on commit 5f9ab16

Please sign in to comment.