mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 08:05:52 +01:00
If record overrides append because of channel count, record unlimited
This commit is contained in:
@@ -1119,12 +1119,13 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt)
|
|||||||
}
|
}
|
||||||
recordingTracks.push_back(pending);
|
recordingTracks.push_back(pending);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (t1 <= p->GetSel0() && p->GetSel1() > p->GetSel0()) {
|
|
||||||
t1 = p->GetSel1(); // record within the selection
|
if (t1 <= p->GetSel0() && p->GetSel1() > p->GetSel0()) {
|
||||||
} else {
|
t1 = p->GetSel1(); // record within the selection
|
||||||
t1 = DBL_MAX; // record for a long, long time
|
} else {
|
||||||
}
|
t1 = DBL_MAX; // record for a long, long time
|
||||||
}
|
}
|
||||||
|
|
||||||
if( recordingTracks.empty() )
|
if( recordingTracks.empty() )
|
||||||
|
|||||||
Reference in New Issue
Block a user