mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixed #1658 (story is missing or offset on iPad 11")
This commit is contained in:
parent
a96d5479e1
commit
8f83b73d7a
1 changed files with 2 additions and 2 deletions
|
@ -1067,9 +1067,9 @@
|
|||
frame.origin.y = 0;
|
||||
} else {
|
||||
frame.origin.x = 0;
|
||||
frame.origin.y = (frame.size.height * pageIndex) - self.view.safeAreaInsets.bottom;
|
||||
frame.origin.y = (frame.size.height * pageIndex) - self.view.safeAreaInsets.bottom + self.view.safeAreaInsets.bottom;
|
||||
}
|
||||
|
||||
|
||||
self.scrollingToPage = pageIndex;
|
||||
[self.currentPage hideNoStoryMessage];
|
||||
[self.nextPage hideNoStoryMessage];
|
||||
|
|
Loading…
Add table
Reference in a new issue