fix stuck touch mode
authorRobin Gareus <robin@gareus.org>
Mon, 7 Mar 2016 16:11:11 +0000 (17:11 +0100)
committerRobin Gareus <robin@gareus.org>
Mon, 7 Mar 2016 16:11:47 +0000 (17:11 +0100)
previously the GUI locked out control surfaces (touch was never released).

gtk2_ardour/automation_controller.cc

index bab1a80b71cb80c09871845cdfcc9d2ba00a2830..b598f44f9468c6daadab7c26b72518d9a43b62b6 100644 (file)
@@ -189,6 +189,8 @@ AutomationController::end_touch ()
                }
 
                _controllable->stop_touch (mark, when);
+       } else {
+               _controllable->stop_touch (false, _controllable->session().transport_frame());
        }
 }