Fix uninitialized variable
[ardour.git] / 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;
        }