summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-04 16:34:19 +0200
committerRobin Gareus <robin@gareus.org>2015-07-04 16:35:49 +0200
commit025e8db11ddef69ac47fa6f68db26491bf5974c0 (patch)
tree40be761a0f9e2b6fe4ab89492b8585613f244dd2 /gtk2_ardour
parentfa7bb9332964de58591b88d93b5f43900e22048c (diff)
stationary playhead implies follow playhead
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 59edb1420a..6a1ba289b6 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -5688,7 +5688,7 @@ Editor::super_rapid_screen_update ()
} else {
- if (!_dragging_playhead && _follow_playhead && _session->requested_return_frame() < 0 && !pending_visual_change.being_handled) {
+ if (!_dragging_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);
if (target <= 0.0) {