From b59a0e47d7b398f5a68122310b39001e285fd4db Mon Sep 17 00:00:00 2001 From: Ronny Date: Sat, 17 Sep 2016 18:44:46 +0200 Subject: [PATCH] Disable group header interaction (#1328) prevent clickability of the group header cell in the group members view --- Signal/src/view controllers/ShowGroupMembersViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Signal/src/view controllers/ShowGroupMembersViewController.m b/Signal/src/view controllers/ShowGroupMembersViewController.m index 14bc20476..21316c5ec 100644 --- a/Signal/src/view controllers/ShowGroupMembersViewController.m +++ b/Signal/src/view controllers/ShowGroupMembersViewController.m @@ -93,6 +93,7 @@ static NSString *const kUnwindToMessagesViewSegue = @"UnwindToMessagesViewSegue" cell.textLabel.text = NSLocalizedString(@"GROUP_MEMBERS_HEADER", @"header for table which lists the members of this group thread"); cell.textLabel.textColor = [UIColor lightGrayColor]; cell.selectionStyle = UITableViewCellSelectionStyleNone; + cell.userInteractionEnabled = NO; } tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];