From 6c865c072da6ba096fe7bf7a9c1e4d1ceedc016f Mon Sep 17 00:00:00 2001 From: Oskar Wallgren Date: Tue, 29 Oct 2019 14:01:05 +0100 Subject: [PATCH] Piano Roll - Fix retrigger with vol/pan sliders (#5271) --- src/gui/editors/PianoRoll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 7ba01f983..6c6acf1b0 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -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() );