mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
#1483 (saved story tags cutoff)
This commit is contained in:
parent
76be6df912
commit
3fdc5e1638
2 changed files with 3 additions and 2 deletions
|
@ -1320,7 +1320,7 @@
|
|||
|
||||
[self.userTagsViewController view]; // Force viewDidLoad
|
||||
CGRect frame = [sender CGRectValue];
|
||||
[self showPopoverWithViewController:self.userTagsViewController contentSize:CGSizeMake(220, 382) sourceView:self.storyPagesViewController.view sourceRect:frame];
|
||||
[self showPopoverWithViewController:self.userTagsViewController contentSize:CGSizeMake(220, 382) sourceView:self.storyPagesViewController.view sourceRect:frame permittedArrowDirections:UIPopoverArrowDirectionDown];
|
||||
}
|
||||
|
||||
#pragma mark - UIPopoverPresentationControllerDelegate
|
||||
|
|
|
@ -190,7 +190,7 @@ const NSInteger kHeaderHeight = 24;
|
|||
reuseIdentifier:cellIdentifier];
|
||||
cell.appDelegate = appDelegate;
|
||||
}
|
||||
|
||||
|
||||
NSString *title;
|
||||
int count = 0;
|
||||
if (indexPath.section == 0) {
|
||||
|
@ -231,6 +231,7 @@ const NSInteger kHeaderHeight = 24;
|
|||
cell.neutralCount = 0;
|
||||
cell.negativeCount = 0;
|
||||
cell.isSaved = YES;
|
||||
cell.indentationLevel = 0;
|
||||
|
||||
[cell setNeedsDisplay];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue