From: Kent Sutherland Date: Fri, 14 Mar 2003 02:19:01 +0000 (+0000) Subject: Fixed some stuff with the equalizer menu. Fix the plugin EQ stuff please! :) X-Git-Tag: v1.0~192 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/e40a6bb44d76a738d58a321039b6932c4688b12a Fixed some stuff with the equalizer menu. Fix the plugin EQ stuff please! :) --- diff --git a/MenuTunes.m b/MenuTunes.m index ee35882..d2fdaf2 100755 --- a/MenuTunes.m +++ b/MenuTunes.m @@ -793,8 +793,8 @@ int curSet = [currentRemote currentEQPresetIndex]; int item = [[sender representedObject] intValue]; [currentRemote switchToEQAtIndex:item]; - [[eqMenu itemAtIndex:curSet - 1] setState:NSOffState]; - [[eqMenu itemAtIndex:item - 1] setState:NSOnState]; + [[eqMenu itemAtIndex:curSet + 1] setState:NSOffState]; + [[eqMenu itemAtIndex:item + 2] setState:NSOnState]; } - (void)playPause:(id)sender