From 6aa2ad26b5780354dc4e6b490fc71995ee52563b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 8 Jun 2023 18:06:28 +0200 Subject: [PATCH] Clear transport sub-state at RangeStop, disable play-range --- libs/ardour/session_process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index dc97695cd7..735e1ca25b 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -1020,7 +1020,7 @@ Session::process_event (SessionEvent* ev) case SessionEvent::RangeStop: // cerr << "RANGE STOP\n"; - TFSM_STOP (ev->yes_or_no, false); + TFSM_STOP (ev->yes_or_no, true); remove = false; del = false; break;