1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-15 02:45:23 +01: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();