1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Fix GetInfo: Type=Labels counts channels rather than tracks.

This commit is contained in:
James Crook 2018-08-29 13:35:21 +01:00
parent 481370b7b3
commit 85c1eb4720

View File

@ -400,11 +400,11 @@ bool GetInfoCommand::SendLabels(const CommandContext &context)
#endif
}
}
// Theoretically you could have a stereo LabelTrack, and
// this way you'd skip the second version of it.
// Skip second tracks of stereo...
//if( t->GetLinked() )
// t= iter.Next();
// This has no effect on label tracks themselves, which are never stereo
// but is needed for per track rather than per channel numbering.
if( t->GetLinked() )
t= iter.Next();
if( t )
t=iter.Next();
i++;