1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-22 08:45:50 +01:00

Minor bug fix. No user impact.

This commit is contained in:
stevethefiddle@gmail.com
2015-01-22 08:50:00 +00:00
parent 4a19fa798c
commit 57d218bcec

View File

@@ -192,7 +192,8 @@ bool EffectChangeSpeed::Process()
if (bGoodResult) if (bGoodResult)
ReplaceProcessedTracks(bGoodResult); ReplaceProcessedTracks(bGoodResult);
mT1 = mT0 + mMaxNewLength; // Update selection. // Update selection.
mT1 = mT0 + (((mT1 - mT0) * 100.0) / (100.0 + m_PercentChange));
return bGoodResult; return bGoodResult;
} }