From: Jay Freeman (saurik) Date: Mon, 15 Nov 2010 22:27:47 +0000 (-0800) Subject: Do not bother with 'Loading Changes...', a 0.12s step. X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/dbae8548a27061baca29b95b58b7cc97eea8281e?ds=inline Do not bother with 'Loading Changes...', a 0.12s step. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 95eee35d..2d861b14 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7065,12 +7065,16 @@ freeing the view controllers on tab change */ [sections_ removeAllObjects]; +#if 0 UIProgressHUD *hud([delegate_ addProgressHUD]); // XXX: localize [hud setText:@"Loading Changes"]; //NSLog(@"HUD:%@::%@", delegate_, hud); [self yieldToSelector:@selector(_reloadPackages:) withObject:packages]; [delegate_ removeProgressHUD:hud]; +#else + [self _reloadPackages:packages]; +#endif Section *upgradable = [[[Section alloc] initWithName:UCLocalize("AVAILABLE_UPGRADES") localize:NO] autorelease]; Section *ignored = [[[Section alloc] initWithName:UCLocalize("IGNORED_UPGRADES") localize:NO] autorelease];