mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 10:36:34 +01:00
Clear TransportAbort flag after stop
This fixes an issue with unresponsive transport controls after an abort (e.g. post-export).
This commit is contained in:
parent
a664a50ab7
commit
0700cb8165
1 changed files with 1 additions and 1 deletions
|
|
@ -1569,7 +1569,7 @@ Session::non_realtime_stop (bool abort, int on_entry, bool& finished)
|
||||||
TransportStateChange (); /* EMIT SIGNAL */
|
TransportStateChange (); /* EMIT SIGNAL */
|
||||||
AutomationWatch::instance().transport_stop_automation_watches (_transport_sample);
|
AutomationWatch::instance().transport_stop_automation_watches (_transport_sample);
|
||||||
|
|
||||||
ptw = PostTransportWork (ptw & ~(PostTransportStop|PostTransportClearSubstate));
|
ptw = PostTransportWork (ptw & ~(PostTransportAbort|PostTransportStop|PostTransportClearSubstate));
|
||||||
set_post_transport_work (ptw);
|
set_post_transport_work (ptw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue