1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-10 17:11:17 +02:00
This commit is contained in:
v.audacity 2013-03-08 03:43:21 +00:00
parent f4e9b14baa
commit 77b625944c

View File

@ -1114,12 +1114,13 @@ ExportMixerDialog::ExportMixerDialog( TrackList *tracks, bool selectedOnly,
if( t->GetKind() == Track::Wave && ( t->GetSelected() || !selectedOnly ) && !t->GetMute() )
{
numTracks++;
wxString sTrackName = (t->GetName()).Left(20);
if( t->GetChannel() == Track::LeftChannel )
mTrackNames.Add( t->GetName() + _( " - Left" ) );
mTrackNames.Add(sTrackName + _( " - L" ));
else if( t->GetChannel() == Track::RightChannel )
mTrackNames.Add( t->GetName() + _( " - Right" ) );
mTrackNames.Add(sTrackName + _( " - R" ));
else
mTrackNames.Add( t->GetName() );
mTrackNames.Add(sTrackName);
}
}