Fix/amend a23a8ebcad7.
authorRobin Gareus <robin@gareus.org>
Sat, 24 Feb 2018 11:55:48 +0000 (12:55 +0100)
committerRobin Gareus <robin@gareus.org>
Sat, 24 Feb 2018 11:55:48 +0000 (12:55 +0100)
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).

gtk2_ardour/editor.cc

index b36833aff923a1fb4e31205cfac6cbf0b26b3c67..3c1e3916d4b28668b96204623951cb1e1f82eca9 100644 (file)
@@ -5759,8 +5759,8 @@ Editor::super_rapid_screen_update ()
                _last_update_time = 0;
        }
 
-       if (_session->transport_stopped()) {
-               //we are stopped.  don't interpolate the playhead position; just set it
+       if (!_session->transport_rolling ()) {
+               /* Do not interpolate the playhead position; just set it */
                _last_update_time = 0;
        }