1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Fix progress bar in Normalize

This commit is contained in:
Paul Licameli
2017-04-22 17:12:21 -04:00
parent 8184ae5841
commit 972f7471de

View File

@@ -240,6 +240,7 @@ bool EffectNormalize::Process()
break; break;
} }
track = (WaveTrack *) iter.Next(); // go to the second linked one track = (WaveTrack *) iter.Next(); // go to the second linked one
curTrackNum++; // keeps progress bar correct
msg = topMsg + _("Processing second track of stereo pair: ") + trackName; msg = topMsg + _("Processing second track of stereo pair: ") + trackName;
if (!ProcessOne(track, msg, curTrackNum, offset2)) if (!ProcessOne(track, msg, curTrackNum, offset2))
{ {