From 88a22d40b5befe71d8c51939b3bb3aeea754642a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 1 Mar 2017 11:54:52 +0100 Subject: Fix implicit selection when operating track-header ctrl buttons Stop event propagation. Otherwise, on release the event is passed up and handled by the TAV which scrolls the editor viewpoint and the button is no longer under the mouse. --- gtk2_ardour/automation_controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/automation_controller.cc b/gtk2_ardour/automation_controller.cc index bf2be7ab0d..21e6b429cb 100644 --- a/gtk2_ardour/automation_controller.cc +++ b/gtk2_ardour/automation_controller.cc @@ -225,7 +225,7 @@ bool AutomationController::button_release (GdkEventButton*) { end_touch (); - return false; + return true; } static double -- cgit v1.2.3