From 893b51bda20b6093cf7ca2a79ec3bd079bc3a730 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Wed, 27 Jan 2016 17:10:59 -0600 Subject: [PATCH] Center the playhead for stationary_playhead playback. This avoids a visual discontinuity when playback is initiated after a jog-event. --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 4eb6234845..f07f4341e8 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -5721,7 +5721,7 @@ Editor::super_rapid_screen_update () if (!_dragging_playhead && _follow_playhead && _session->requested_return_frame() < 0 && !pending_visual_change.being_handled) { framepos_t const frame = playhead_cursor->current_frame (); - double target = ((double)frame - (double)current_page_samples()/3.0); + double target = ((double)frame - (double)current_page_samples()/2.0); if (target <= 0.0) { target = 0.0; }