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

Austin Boyle's patch for Bug 473 - Track can be in "Solo" mode when there is no solo button

This commit is contained in:
v.audacity 2014-08-01 18:59:07 +00:00
parent 5b9e6f58a2
commit c39269bf4a

View File

@ -4697,7 +4697,7 @@ void AudacityProject::HandleTrackMute(Track *t, const bool exclusive)
i->SetMute(muted); // and mute it as well
}
if( IsSoloSimple() )
if (IsSoloSimple() || IsSoloNone())
{
TrackListIterator iter(mTracks);
Track *i = iter.First();