From f21ad1ce49716f743dfbcea12b811f7ac37ed558 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 8 Jun 2016 18:08:51 -0400 Subject: [PATCH] Pinned playhead for recording is once again always center, not right --- src/toolbars/ControlToolBar.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index de8b1330a..720cb5fd6 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -1281,6 +1281,9 @@ void ControlToolBar::StartScrolling() if (project) { auto mode = Mode::Centered; +#if 0 + // Enable these lines to pin the playhead right instead of center, + // when recording but not overdubbing. if (gAudioIO->GetNumCaptureChannels() > 0) { // recording @@ -1300,6 +1303,7 @@ void ControlToolBar::StartScrolling() if (!duplex) mode = Mode::Right; } +#endif project->GetPlaybackScroller().Activate(mode); }