diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 06:34:22 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 06:34:22 -0700 |
commit | 69b1d3286e301bd7edebd59f3dce8b51289cd35e (patch) | |
tree | a7b4adb88136c412df0b0927501efbb04f94315d /CyteKit | |
parent | bda7025fa80f22d0b246cbddeebc28306614124e (diff) |
Avoid overriding the background color after push.
Diffstat (limited to 'CyteKit')
-rw-r--r-- | CyteKit/WebViewController.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CyteKit/WebViewController.mm b/CyteKit/WebViewController.mm index f047ed3..374cbef 100644 --- a/CyteKit/WebViewController.mm +++ b/CyteKit/WebViewController.mm @@ -992,7 +992,7 @@ float CYScrollViewDecelerationRateNormal; } [webview_ setOpaque:NO]; - [webview_ setBackgroundColor:color_]; + [webview_ setBackgroundColor:nil]; [scroller_ setFixedBackgroundPattern:YES]; [scroller_ setBackgroundColor:color_]; |