diff options
-rw-r--r-- | MobileCydia.mm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 01e6735..6999f0a 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 { |