From 836bba86a9a2d1d9d06455ab2568401001698278 Mon Sep 17 00:00:00 2001 From: Andrew Madsen Date: Tue, 8 Mar 2016 14:07:35 -0700 Subject: [PATCH] Issue #99: Fixed minor mistake in -[MIKMIDITrack isSolo]. --- Source/MIKMIDITrack.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MIKMIDITrack.m b/Source/MIKMIDITrack.m index 3e1f3f43..e3c3ec56 100644 --- a/Source/MIKMIDITrack.m +++ b/Source/MIKMIDITrack.m @@ -675,7 +675,7 @@ - (void)setMuted:(BOOL)muted - (BOOL)isSolo { - if (!_solo) return _solo; + if (_solo) return YES; if (self.musicTrack) { Boolean isSolo = FALSE;