From: Dustin L. Howett Date: Fri, 12 Nov 2010 01:43:43 +0000 (-0500) Subject: chpwn got the "blink only for essential packages" logic backwards, and claims to... X-Git-Tag: v1.0.3366~53 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/65a03a7ab61aa35d949dc4cdc53a37785649e7c1?ds=sidebyside;hp=d82bb9b4fd30b9805d264f21b4eeec7adc6eb313 chpwn got the "blink only for essential packages" logic backwards, and claims to have failed at life. I have fixed one of these things. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 10c610a4..6adcd529 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -8136,7 +8136,7 @@ static _finline void _setHomePage(Cydia *self) { if (changes != 0) { NSString *badge([[NSNumber numberWithInt:changes] stringValue]); [changesItem setBadgeValue:badge]; - [changesItem setAnimatedBadge:[essential_ count] == 0]; + [changesItem setAnimatedBadge:([essential_ count] > 0)]; if ([self respondsToSelector:@selector(setApplicationBadge:)]) [self setApplicationBadge:badge];