mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
transport stop resets default_transport_speed
This means that using the wheel in the GUI (or equivalent) ends its effect at transport stop
This commit is contained in:
parent
9a3159c2c0
commit
abcb092adc
1 changed files with 2 additions and 1 deletions
|
|
@ -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<RouteList> r = routes.reader ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue