From acdd7f2805f515cc9785a3214008be593c2fb216 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Tue, 9 Oct 2018 12:20:46 -0400 Subject: [PATCH] Fix settings button glitch on iOS 10. --- Signal/src/ViewControllers/HomeView/HomeViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewController.m b/Signal/src/ViewControllers/HomeView/HomeViewController.m index e6d0f471b..afb394f81 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewController.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewController.m @@ -497,7 +497,7 @@ NSString *const kArchivedConversationsReuseIdentifier = @"kArchivedConversations // Settings button. UIBarButtonItem *settingsButton; - if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(10, 0)) { + if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(11, 0)) { const NSUInteger kAvatarSize = 28; UIImage *_Nullable localProfileAvatarImage = [OWSProfileManager.sharedManager localProfileAvatarImage]; UIImage *avatarImage = (localProfileAvatarImage