1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-15 16:17:41 +02:00

beforeLen default now 2.0s

Consistency.  Per eMail from Dave, the default elsewhere is 2s, not 1s.
This commit is contained in:
James Crook 2015-04-12 12:40:22 +01:00
parent 6eabfbb624
commit 28864acb23

View File

@ -2299,7 +2299,7 @@ void AudacityProject::OnPlayBeforeSelectionEnd()
double t0 = mViewInfo.selectedRegion.t0();
double t1 = mViewInfo.selectedRegion.t1();
double beforeLen;
gPrefs->Read(wxT("/AudioIO/CutPreviewBeforeLen"), &beforeLen, 1.0);
gPrefs->Read(wxT("/AudioIO/CutPreviewBeforeLen"), &beforeLen, 2.0);
mLastPlayMode = oneSecondPlay; // this disables auto scrolling, as in OnPlayToSelection()