diff options
-rw-r--r-- | UICaboodle/BrowserView.mm | 6 | ||||
-rw-r--r-- | iPhonePrivate.h | 4 |
2 files changed, 3 insertions, 7 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm index ff39763..e2dee3b 100644 --- a/UICaboodle/BrowserView.mm +++ b/UICaboodle/BrowserView.mm @@ -1161,7 +1161,7 @@ static Class $UIWebBrowserView; UIColor *uic(nil); if (red == 0xc7 && green == 0xce && blue == 0xd5) - uic = [UIColor pinStripeColor]; + uic = [UIColor groupTableViewBackgroundColor]; else if (alpha != 0) uic = [UIColor colorWithRed:(red / 255) @@ -1178,7 +1178,7 @@ static Class $UIWebBrowserView; } if (!colored) - [scroller_ setBackgroundColor:[UIColor pinStripeColor]]; + [scroller_ setBackgroundColor:[UIColor groupTableViewBackgroundColor]]; break; } } @@ -1355,7 +1355,7 @@ static Class $UIWebBrowserView; [[self view] addSubview:scroller_]; [scroller_ setFixedBackgroundPattern:YES]; - [scroller_ setBackgroundColor:[UIColor pinStripeColor]]; + [scroller_ setBackgroundColor:[UIColor groupTableViewBackgroundColor]]; [scroller_ setScrollingEnabled:YES]; [scroller_ setClipsSubviews:YES]; diff --git a/iPhonePrivate.h b/iPhonePrivate.h index f9f03a4..de959c9 100644 --- a/iPhonePrivate.h +++ b/iPhonePrivate.h @@ -89,10 +89,6 @@ typedef enum { - (UIView *) view; @end -@interface UIColor (Apple) -+ (UIColor *) pinStripeColor; -@end - @interface UIControl (Apple) - (void) addTarget:(id)target action:(SEL)action forEvents:(NSInteger)events; @end |