1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-05 23:19:06 +02:00

Bug 2382 - Timer record: if a labels are present recording starts at last label position - not cursor position

This commit is contained in:
Leland Lucius 2020-04-14 12:28:03 -05:00
parent 3653f5f3bf
commit b68c417d8e

View File

@ -299,6 +299,9 @@ void OnTimerRecord(const CommandContext &context)
}
else
{
// Bug #2382
// Allow recording to start at current cursor position.
#if 0
// Timer Record should not record into a selection.
bool bPreferNewTrack;
gPrefs->Read("/GUI/PreferNewTrackRecord",&bPreferNewTrack, false);
@ -307,6 +310,7 @@ void OnTimerRecord(const CommandContext &context)
} else {
window.SkipEnd(false);
}
#endif
int iTimerRecordingOutcome = dialog.RunWaitDialog();
switch (iTimerRecordingOutcome) {