From 18e281ea3c5840269f3ea9b156251fa3a7f9420f Mon Sep 17 00:00:00 2001 From: James Crook Date: Wed, 17 Aug 2016 21:42:50 +0100 Subject: [PATCH] Swap meaning of record and shift record. --- src/toolbars/ControlToolBar.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 9d072b52a..2d30c290c 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -909,7 +909,11 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt) TrackList tracksCopy{}; bool tracksCopied = false; bool shifted = mRecord->WasShiftDown(); +#ifdef EXPERIMENTAL_DARK_AUDACITY + if (!shifted) { +#else if (shifted) { +#endif bool sel = false; double allt0 = t0;