diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 16:02:59 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-11 16:02:59 -0700 |
commit | 77259cabd44ffd6578831c9fca3d05e8de4f6761 (patch) | |
tree | 5364de9e70310018996950677dcd50c378493ab9 /CyteKit | |
parent | 8323c1b923775ad0f118c0de2f2a7a0417802c57 (diff) |
The initial page color for packages should be nil.
Diffstat (limited to 'CyteKit')
-rw-r--r-- | CyteKit/WebViewController.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CyteKit/WebViewController.mm b/CyteKit/WebViewController.mm index d392fe8..e5b58d6 100644 --- a/CyteKit/WebViewController.mm +++ b/CyteKit/WebViewController.mm @@ -589,7 +589,7 @@ float CYScrollViewDecelerationRateNormal; } } - [self setPageColor:uic]; + [super setPageColor:uic]; [scroller_ setBackgroundColor:color_]; break; } @@ -873,7 +873,7 @@ float CYScrollViewDecelerationRateNormal; width_ = width; class_ = _class; - [self setPageColor:nil]; + [super setPageColor:nil]; allowsNavigationAction_ = true; |