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:
parent
4a19fa798c
commit
57d218bcec
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user