Fix playhead smoothing when auditioning.
authorRobin Gareus <robin@gareus.org>
Sun, 11 Nov 2018 02:38:34 +0000 (03:38 +0100)
committerRobin Gareus <robin@gareus.org>
Sun, 11 Nov 2018 02:38:34 +0000 (03:38 +0100)
Don't use timer to keep moving the playhead when auditioning.
This fixes playhead jiggling during audition.

gtk2_ardour/editor.cc

index 743ec420c0a545319e59b1c0d9b008514cbbe9e0..bd006e13fbd4039bdc4fb5740523dd817996c4cf 100644 (file)
@@ -5940,7 +5940,7 @@ Editor::super_rapid_screen_update ()
                _last_update_time = 0;
        }
 
-       if (!_session->transport_rolling ()) {
+       if (!_session->transport_rolling () || _session->is_auditioning ()) {
                /* Do not interpolate the playhead position; just set it */
                _last_update_time = 0;
        }