mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Fix/amend a23a8ebcad.
Updated condition to check for transport_rolling to include preroll and count-in (speed is != 0 during pre-roll and count-in, but transport is not actually rolling).
This commit is contained in:
parent
881c8eeca8
commit
75122af118
1 changed files with 2 additions and 2 deletions
|
|
@ -5759,8 +5759,8 @@ Editor::super_rapid_screen_update ()
|
||||||
_last_update_time = 0;
|
_last_update_time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_session->transport_stopped()) {
|
if (!_session->transport_rolling ()) {
|
||||||
//we are stopped. don't interpolate the playhead position; just set it
|
/* Do not interpolate the playhead position; just set it */
|
||||||
_last_update_time = 0;
|
_last_update_time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue