1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-20 14:20:06 +02: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)
ReplaceProcessedTracks(bGoodResult);
mT1 = mT0 + mMaxNewLength; // Update selection.
// Update selection.
mT1 = mT0 + (((mT1 - mT0) * 100.0) / (100.0 + m_PercentChange));
return bGoodResult;
}