summaryrefslogtreecommitdiff
path: root/gtk2_ardour/canvas-note.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-08 13:21:05 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-08 13:21:05 +0000
commitfa19e1a9d0b97233e130d301d906b3867a585950 (patch)
tree24d9e680073065545cc173ac0d0760d4f6fdc0eb /gtk2_ardour/canvas-note.cc
parent33ffe733f1bb10c7a53951e2092443524545dc32 (diff)
When sounding notes on selection / note movements, play the note for as long as the mouse button is held down (#4574).
git-svn-id: svn://localhost/ardour2/branches/3.0@12606 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/canvas-note.cc')
-rw-r--r--gtk2_ardour/canvas-note.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/gtk2_ardour/canvas-note.cc b/gtk2_ardour/canvas-note.cc
index f6497776a5..b98cbab5ff 100644
--- a/gtk2_ardour/canvas-note.cc
+++ b/gtk2_ardour/canvas-note.cc
@@ -22,11 +22,17 @@ CanvasNote::CanvasNote (MidiRegionView& region,
bool
CanvasNote::on_event(GdkEvent* ev)
{
+ bool r = true;
+
if (!CanvasNoteEvent::on_event (ev)) {
- return _region.get_time_axis_view().editor().canvas_note_event (ev, this);
+ r = _region.get_time_axis_view().editor().canvas_note_event (ev, this);
}
- return true;
+ if (ev->type == GDK_BUTTON_RELEASE) {
+ _region.note_button_release ();
+ }
+
+ return r;
}
void