diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-10-16 00:57:10 -0700 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2010-10-16 00:57:10 -0700 |
commit | 0d43d640da137d0de4b4d66613898d3a0eed4808 (patch) | |
tree | 4f0ff9da31f812a83e9ac248837d92d06b922767 /UICaboodle/BrowserView.mm | |
parent | 1edcdccff91b5e32f9fcf40cfcbd00c98bb237ed (diff) | |
parent | b9ada469088990a084f1bf0bebe5f7cc7dce4148 (diff) |
Merge branch 'master' of saurik.com:cydia
Diffstat (limited to 'UICaboodle/BrowserView.mm')
-rwxr-xr-x | UICaboodle/BrowserView.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm index 9703227..86c7da6 100755 --- 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]; |