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:
parent
b288a8500a
commit
89973ad463
@ -6478,7 +6478,9 @@ void AudacityProject::OnMuteAllTracks()
|
||||
|
||||
while (t)
|
||||
{
|
||||
t->SetMute(true);
|
||||
if (t->GetKind() == Track::Wave)
|
||||
t->SetMute(true);
|
||||
|
||||
t = iter.Next();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user