mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing FTUX categories on ios.
This commit is contained in:
parent
e2e74809dc
commit
d11bc36805
3 changed files with 4 additions and 4 deletions
|
@ -366,8 +366,8 @@
|
|||
|
||||
|
||||
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
SiteCell *cell = [tableView
|
||||
dequeueReusableCellWithIdentifier:@"ActivityCell"];
|
||||
SiteCell *cell = [tableView
|
||||
dequeueReusableCellWithIdentifier:@"ActivityCell"];
|
||||
if (cell == nil) {
|
||||
cell = [[SiteCell alloc]
|
||||
initWithStyle:UITableViewCellStyleDefault
|
||||
|
|
|
@ -78,7 +78,7 @@ static UIFont *indicatorFont = nil;
|
|||
CGContextSetStrokeColor(context, CGColorGetComponents([self.feedColorBar CGColor])); //feedColorBarTopBorder
|
||||
CGContextSetLineWidth(context, 6.0f);
|
||||
CGContextBeginPath(context);
|
||||
float width = self.bounds.size.width - 20.0f;
|
||||
float width = self.bounds.size.width - 3.0f;
|
||||
CGContextMoveToPoint(context, width, 1.0f);
|
||||
CGContextAddLineToPoint(context, width, self.frame.size.height);
|
||||
CGContextStrokePath(context);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#import <SystemConfiguration/SystemConfiguration.h>
|
||||
#import <MobileCoreServices/MobileCoreServices.h>
|
||||
|
||||
#define DEBUG 1
|
||||
//#define DEBUG 1
|
||||
|
||||
#ifdef DEBUG
|
||||
#define BACKGROUND_REFRESH_SECONDS -5
|
||||
|
|
Loading…
Add table
Reference in a new issue