diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2013-09-30 03:16:42 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2013-09-30 03:18:22 -0700 |
commit | 5d0438dcf264f6cc3a783e774c4bdd4943ec012f (patch) | |
tree | 92249c09021760bc29838d0c9c782a3f02eb387a /MobileCydia.mm | |
parent | 5328a9f0bf341336a415f9465e53097e00c0948c (diff) |
Do not white text on iOS 7 highlighted table cells.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 483d7a2..ef92bc4 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5667,7 +5667,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [badge_ drawInRect:rect]; } - if (highlighted) + if (highlighted && kCFCoreFoundationVersionNumber < 800) UISetColor(White_); if (!highlighted) @@ -5710,7 +5710,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [badge_ drawInRect:rect]; } - if (highlighted) + if (highlighted && kCFCoreFoundationVersionNumber < 800) UISetColor(White_); if (!highlighted) @@ -5834,7 +5834,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [icon_ drawInRect:CGRectMake(8, 7, 32, 32)]; - if (highlighted) + if (highlighted && kCFCoreFoundationVersionNumber < 800) UISetColor(White_); float width(rect.size.width); @@ -8492,7 +8492,7 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi [icon_ drawInRect:rect]; } - if (highlighted) + if (highlighted && kCFCoreFoundationVersionNumber < 800) UISetColor(White_); if (!highlighted) |