From abcb092adcae61b148f82abd240282559a286b03 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 5 Mar 2020 08:35:26 -0700 Subject: transport stop resets default_transport_speed This means that using the wheel in the GUI (or equivalent) ends its effect at transport stop --- libs/ardour/session_transport.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 2159a61a36..b32baba966 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -101,11 +101,12 @@ Session::realtime_stop (bool abort, bool clear_state) if (_transport_speed < 0.0f) { todo = (PostTransportWork (todo | PostTransportStop)); - _default_transport_speed = 1.0; } else { todo = PostTransportWork (todo | PostTransportStop); } + _default_transport_speed = 1.0; + /* call routes */ boost::shared_ptr r = routes.reader (); -- cgit v1.2.3