summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2010-11-15 14:27:47 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2010-11-15 14:39:14 -0800
commit8e4e80cbb2bc276b4171815373e236b4188f0cc8 (patch)
treeff9a10526ed09973011da7bcaf6f1c6dcd1e9e26
parent6da1297ddeb0e89bd928cd95ef2f5f6f5dbbd6c8 (diff)
Do not bother with 'Loading Changes...', a 0.12s step.
-rw-r--r--MobileCydia.mm4
1 files changed, 4 insertions, 0 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 95eee35..2d861b1 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];