From: Kent Sutherland Date: Sun, 16 May 2004 19:06:01 +0000 (+0000) Subject: The status item is disabled while the menu is being updated X-Git-Tag: v1.3~15 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/a250162c5267a1b528a0309f20b4ceccd1363701 The status item is disabled while the menu is being updated --- diff --git a/MainController.m b/MainController.m index 9d2e3cc..a8c28d0 100755 --- a/MainController.m +++ b/MainController.m @@ -358,6 +358,7 @@ static MainController *sharedController; } timerUpdating = YES; + [_statusItem setEnabled:NO]; NS_DURING latestPlaylistClass = [[self currentRemote] currentPlaylistClass]; @@ -391,6 +392,7 @@ static MainController *sharedController; NS_ENDHANDLER timerUpdating = NO; + [_statusItem setEnabled:YES]; } }