From 769c0f79f0b2018237cf4b071bc590cae8e5cae0 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 15 Apr 2020 18:00:59 -0300 Subject: [PATCH] Refine 'circled' icons. --- .../RecipientPicker/RecipientPickerViewController.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Signal/src/ViewControllers/RecipientPicker/RecipientPickerViewController.m b/Signal/src/ViewControllers/RecipientPicker/RecipientPickerViewController.m index c2af51bc16..9d450be651 100644 --- a/Signal/src/ViewControllers/RecipientPicker/RecipientPickerViewController.m +++ b/Signal/src/ViewControllers/RecipientPicker/RecipientPickerViewController.m @@ -262,7 +262,7 @@ const NSUInteger kMinimumSearchLength = 2; button.accessibilityIdentifier = ACCESSIBILITY_IDENTIFIER_WITH_NAME(self, accessibilityIdentifierName); [buttonStack addArrangedSubview:button]; - UIView *iconView = [OWSTableItem buildIconInCircleViewWithIcon:icon innerIconSize:24]; + UIView *iconView = [OWSTableItem buildIconInCircleViewWithIcon:icon innerIconSize:28]; UILabel *label = [UILabel new]; label.text = title; @@ -414,7 +414,7 @@ const NSUInteger kMinimumSearchLength = 2; NSString *cellName = NSLocalizedString(@"NEW_GROUP_BUTTON", comment : @"Label for the 'create new group' button."); UIView *iconView = [OWSTableItem buildIconInCircleViewWithIcon:ThemeIconComposeNewGroup - innerIconSize:24]; + innerIconSize:28]; UITableViewCell *cell = [OWSTableItem buildCellWithName:cellName iconView:iconView iconSpacing:kContactCellAvatarTextMargin]; @@ -440,7 +440,7 @@ const NSUInteger kMinimumSearchLength = 2; @"A label the cell that lets you add a new member to a group."); UIView *iconView = [OWSTableItem buildIconInCircleViewWithIcon:ThemeIconComposeFindByPhoneNumber - innerIconSize:24]; + innerIconSize:28]; UITableViewCell *cell = [OWSTableItem buildCellWithName:cellName iconView:iconView iconSpacing:kContactCellAvatarTextMargin]; @@ -468,7 +468,7 @@ const NSUInteger kMinimumSearchLength = 2; NSString *cellName = NSLocalizedString(@"INVITE_FRIENDS_CONTACT_TABLE_BUTTON", @"Label for the cell that presents the 'invite contacts' workflow."); UIView *iconView = [OWSTableItem buildIconInCircleViewWithIcon:ThemeIconComposeInvite - innerIconSize:24]; + innerIconSize:28]; UITableViewCell *cell = [OWSTableItem buildCellWithName:cellName iconView:iconView iconSpacing:kContactCellAvatarTextMargin];