mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-04 13:40:58 +01:00
Reviewed uses of InconsistencyException outside Sequence.cpp
This commit is contained in:
@@ -471,7 +471,7 @@ bool EffectTruncSilence::DoRemoval
|
||||
mTruncLongestAllowedSilence);
|
||||
}
|
||||
|
||||
double cutLen = inLength - outLength;
|
||||
double cutLen = std::max(0.0, inLength - outLength);
|
||||
totalCutLen += cutLen;
|
||||
|
||||
TrackListIterator iterOut(mOutputTracks.get());
|
||||
|
||||
Reference in New Issue
Block a user