From: Grant Paul Date: Sun, 7 Nov 2010 03:43:31 +0000 (-0700) Subject: Pinstripes while loading, removed afterwards due to (nonexistant?) performance implic... X-Git-Tag: v1.0.3366~64 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/5ccb47d86911e63766a3904eb7460e370b3c9c3a Pinstripes while loading, removed afterwards due to (nonexistant?) performance implications. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 01e67353..6999f0aa 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -8639,6 +8639,9 @@ static _finline void _setHomePage(Cydia *self) { return; } + // Show pinstripes while loading data. + [[container_ view] setBackgroundColor:[UIColor performSelector:@selector(pinStripeColor)]]; + [self performSelector:@selector(loadData) withObject:nil afterDelay:0]; } @@ -8655,6 +8658,9 @@ static _finline void _setHomePage(Cydia *self) { PrintTimes(); _setHomePage(self); + + // XXX: does this actually slow anything down? + [[container_ view] setBackgroundColor:[UIColor clearColor]]; } - (void) showActionSheet:(UIActionSheet *)sheet fromItem:(UIBarButtonItem *)item {