From: Robin Gareus Date: Sun, 11 Nov 2018 02:38:34 +0000 (+0100) Subject: Fix playhead smoothing when auditioning. X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=5396385b955accc3a236886ba323d6328e8f4cc2;p=ardour.git Fix playhead smoothing when auditioning. Don't use timer to keep moving the playhead when auditioning. This fixes playhead jiggling during audition. --- diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 743ec420c0..bd006e13fb 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -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; }