1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-15 16:17:41 +02:00

Fix for mute all tracks. Previously tracks other than wave tracks were muted, eg label tracks, and screen readers read them as being muted, which makes no sense.

This commit is contained in:
David Bailes 2015-06-03 13:14:29 +01:00
parent b288a8500a
commit 89973ad463

View File

@ -6478,7 +6478,9 @@ void AudacityProject::OnMuteAllTracks()
while (t)
{
t->SetMute(true);
if (t->GetKind() == Track::Wave)
t->SetMute(true);
t = iter.Next();
}