From: Kent Sutherland Date: Wed, 19 Feb 2003 08:56:00 +0000 (+0000) Subject: Fixed fast forward/rewind buggishness. X-Git-Tag: v1.0~234 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/1713069f5f30ae6831ecf69ea7ddb0d52ecbeeff Fixed fast forward/rewind buggishness. --- diff --git a/MenuTunes.m b/MenuTunes.m index 487a5bb..3718e55 100755 --- a/MenuTunes.m +++ b/MenuTunes.m @@ -701,8 +701,8 @@ Things to do: [currentRemote pause]; [playPauseMenuItem setTitle:@"Play"]; } else if ((state == forwarding) || (state == rewinding)) { - [currentRemote play]; [currentRemote pause]; + [currentRemote play]; } else { [currentRemote play]; [playPauseMenuItem setTitle:@"Pause"]; @@ -722,11 +722,13 @@ Things to do: - (void)fastForward:(id)sender { [currentRemote fastForward]; + [playPauseMenuItem setTitle:@"Play"]; } - (void)rewind:(id)sender { [currentRemote rewind]; + [playPauseMenuItem setTitle:@"Play"]; } //