1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

Fix another mistake in iteration over channels in src/commands

This commit is contained in:
Paul Licameli 2018-10-11 21:40:38 -04:00
parent 494ab4eafe
commit 297f3b4d84

View File

@ -107,7 +107,7 @@ bool SetTrackBase::Apply(const CommandContext & context )
#endif
if( bThisTrack ){
ApplyInner( context, t );
ApplyInner( context, channel );
}
++j; // count all channels
}