From 4c85ee2ac3dc84dda6042972e1fefb4bf09ea26e Mon Sep 17 00:00:00 2001 From: David Sinclair Date: Wed, 16 Dec 2015 11:21:47 -0800 Subject: [PATCH] iOS: tweaked #825 (dark mode) Fix for accessing [Preferences & Find Friends](https://github.com/samuelclay/NewsBlur/commit/07e667a95dbb6ac8c 1ab1bfac80e5ffb83e7d9ba#commitcomment-15023182) on iPhone. --- clients/ios/Classes/NewsBlurAppDelegate.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/ios/Classes/NewsBlurAppDelegate.m b/clients/ios/Classes/NewsBlurAppDelegate.m index a66d549af..3c01e08f3 100644 --- a/clients/ios/Classes/NewsBlurAppDelegate.m +++ b/clients/ios/Classes/NewsBlurAppDelegate.m @@ -455,6 +455,8 @@ preferencesViewController = [[IASKAppSettingsViewController alloc] init]; [[ThemeManager themeManager] addThemeGestureRecognizerToView:self.preferencesViewController.view]; } + + [self hidePopover]; preferencesViewController.delegate = self.feedsViewController; preferencesViewController.showDoneButton = YES; @@ -495,6 +497,8 @@ } - (void)showFindFriends { + [self hidePopover]; + FriendsListViewController *friendsBVC = [[FriendsListViewController alloc] init]; UINavigationController *friendsNav = [[UINavigationController alloc] initWithRootViewController:friendsListViewController];