From 8f4c10f855b543d1c4797fa71868a64be372d0d5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Mar 2025 18:12:35 -0700 Subject: [PATCH] subtle change in event handling for MidiViews this needs more investigation but we need to return false from scroll event handling in order for stuff to work. this should not be the case and this will likely be reverted once the reason it is required is uncovered --- gtk2_ardour/midi_view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/midi_view.cc b/gtk2_ardour/midi_view.cc index 3f7d3e400d..f472fa4dd4 100644 --- a/gtk2_ardour/midi_view.cc +++ b/gtk2_ardour/midi_view.cc @@ -413,7 +413,7 @@ MidiView::midi_canvas_group_event (GdkEvent* ev) case GDK_SCROLL: if (scroll (&ev->scroll)) { - return true; + return false; } break;