mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
#1377 (mark as read for titles only)
- Easy fix, using a smaller offset if title only.
This commit is contained in:
parent
0ff50f7edb
commit
a433bfbc8d
1 changed files with 1 additions and 1 deletions
|
@ -1898,7 +1898,7 @@ heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|||
}
|
||||
|
||||
CGPoint topRowPoint = self.storyTitlesTable.contentOffset;
|
||||
topRowPoint.y = topRowPoint.y + 80.f;
|
||||
topRowPoint.y = topRowPoint.y + (self.textSize != FeedDetailTextSizeTitleOnly ? 80.f : 60.f);
|
||||
NSIndexPath *indexPath = [self.storyTitlesTable indexPathForRowAtPoint:topRowPoint];
|
||||
BOOL markReadOnScroll = self.isMarkReadOnScroll;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue