From 8e4e80cbb2bc276b4171815373e236b4188f0cc8 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 15 Nov 2010 14:27:47 -0800 Subject: [PATCH] Do not bother with 'Loading Changes...', a 0.12s step. --- MobileCydia.mm | 4 ++++ 1 file changed, 4 insertions(+) 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]; -- 2.45.2