mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
iOS: fixed #1139 (scroll to top)
The search field is no longer hidden on the iPad dashboard view.
This commit is contained in:
parent
99e72b5d47
commit
bad814f27a
1 changed files with 3 additions and 3 deletions
|
@ -393,7 +393,7 @@
|
|||
[appDelegate.masterContainerViewController transitionToFeedDetail:NO];
|
||||
}
|
||||
|
||||
if (!storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
if (!isDashboardModule && !storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
[self.storyTitlesTable setContentOffset:CGPointMake(0, CGRectGetHeight(self.searchBar.frame))];
|
||||
}
|
||||
if (storiesCollection.inSearch && storiesCollection.searchQuery) {
|
||||
|
@ -681,7 +681,7 @@
|
|||
}];
|
||||
});
|
||||
}
|
||||
if (!storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
if (!isDashboardModule && !storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
[self.storyTitlesTable setContentOffset:CGPointMake(0, CGRectGetHeight(self.searchBar.frame))];
|
||||
}
|
||||
|
||||
|
@ -872,7 +872,7 @@
|
|||
|
||||
}
|
||||
|
||||
if (!storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
if (!isDashboardModule && !storiesCollection.inSearch && storiesCollection.feedPage == 1) {
|
||||
[self.storyTitlesTable setContentOffset:CGPointMake(0, CGRectGetHeight(self.searchBar.frame))];
|
||||
}
|
||||
if (storiesCollection.feedPage == 1) {
|
||||
|
|
Loading…
Add table
Reference in a new issue