summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-04-02 03:58:21 +0200
committerRobin Gareus <robin@gareus.org>2020-04-02 03:58:21 +0200
commit1439610f959284c00ae0f1fd8b81a5d3253bbd6b (patch)
treea537fe77e59a0b429f9b8da19155dcf4bd36d115 /libs/ardour
parent163a065543866b9237c832987ac9a36904341c0e (diff)
Restart Transport FSM after x-run halt #7951
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/session_transport.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index 9962987194..981c9e99f3 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -1838,10 +1838,13 @@ Session::xrun_recovery ()
if (Config->get_stop_recording_on_xrun() && actively_recording()) {
/* it didn't actually halt, but we need
- to handle things in the same way.
- */
+ * to handle things in the same way.
+ */
engine_halted();
+
+ /* ..and start the FSM engine again */
+ _transport_fsm->start ();
}
}