Skip to content

Commit

Permalink
Issue #99: Fixed minor mistake in -[MIKMIDITrack isSolo].
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Madsen committed Mar 8, 2016
1 parent eaf3708 commit 836bba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MIKMIDITrack.m
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ - (void)setMuted:(BOOL)muted

- (BOOL)isSolo
{
if (!_solo) return _solo;
if (_solo) return YES;

if (self.musicTrack) {
Boolean isSolo = FALSE;
Expand Down

0 comments on commit 836bba8

Please sign in to comment.