diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 16:02:59 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 16:02:59 -0700 |
commit | 77259cabd44ffd6578831c9fca3d05e8de4f6761 (patch) | |
tree | 5364de9e70310018996950677dcd50c378493ab9 /MobileCydia.mm | |
parent | 8323c1b923775ad0f118c0de2f2a7a0417802c57 (diff) |
The initial page color for packages should be nil.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 7a08179..9b7e9cb 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -6279,6 +6279,10 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } #endif +- (void) setPageColor:(UIColor *)color { + return [super setPageColor:nil]; +} + - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name withReferrer:(NSString *)referrer { if ((self = [super init]) != nil) { database_ = database; |