passthrough unhandled motion events in MIDI region views because we may be dragging non-note objects like patch changes

This commit is contained in:
Paul Davis 2014-02-11 22:46:21 -05:00
parent cc2aca44fb
commit 3bbbf56718
1 changed files with 5 additions and 1 deletions

View File

@ -650,9 +650,13 @@ MidiRegionView::motion (GdkEventMotion* ev)
default:
break;
}
return false;
/* we may be dragging some non-note object (eg. patch-change, sysex)
*/
return editor.drags()->motion_handler ((GdkEvent *) ev, false);
}