]> git.saurik.com Git - cydia.git/commitdiff
Do not white text on iOS 7 highlighted table cells.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 30 Sep 2013 10:16:42 +0000 (03:16 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 30 Sep 2013 10:18:22 +0000 (03:18 -0700)
MobileCydia.mm

index 483d7a2c68e4cb90c3f1c454ef0a5409a276eef0..ef92bc45d11f131ca534ca34ef8b13b8da8bcf1a 100644 (file)
@@ -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)