Refine 'circled' icons.

This commit is contained in:
Matthew Chen 2020-04-15 18:00:59 -03:00
parent 33328391b9
commit 769c0f79f0

View File

@ -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];