From 47026cac9b7fd3ab1216e2b8261bbca5040ca37d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 7 Mar 2016 17:11:11 +0100 Subject: [PATCH] fix stuck touch mode previously the GUI locked out control surfaces (touch was never released). --- gtk2_ardour/automation_controller.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/automation_controller.cc b/gtk2_ardour/automation_controller.cc index bab1a80b71..b598f44f94 100644 --- a/gtk2_ardour/automation_controller.cc +++ b/gtk2_ardour/automation_controller.cc @@ -189,6 +189,8 @@ AutomationController::end_touch () } _controllable->stop_touch (mark, when); + } else { + _controllable->stop_touch (false, _controllable->session().transport_frame()); } }