1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 16:15:48 +01:00

Revert "If record overrides append because of channel count, record unlimited"

This reverts commit b36482d649.
This commit is contained in:
Paul Licameli
2018-05-17 21:22:31 -04:00
parent 1269fff8e1
commit 318967f00d

View File

@@ -1141,13 +1141,12 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt)
}
recordingTracks.push_back(pending);
}
}
if (t1 <= p->GetSel0() && p->GetSel1() > p->GetSel0()) {
t1 = p->GetSel1(); // record within the selection
} else {
t1 = DBL_MAX; // record for a long, long time
if (t1 <= p->GetSel0() && p->GetSel1() > p->GetSel0()) {
t1 = p->GetSel1(); // record within the selection
} else {
t1 = DBL_MAX; // record for a long, long time
}
}
if( recordingTracks.empty() )