mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 17:14:07 +01:00
Bug 2382 - Timer record: if a labels are present recording starts at last label position - not cursor position
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user