1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-15 17:11:23 +01:00

Swap meaning of record and shift record.

This commit is contained in:
James Crook
2016-08-17 21:42:50 +01:00
parent 47f8d27c59
commit 18e281ea3c

View File

@@ -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;