From 5fa1a3630f9d627ff39bc1ad0b80872e48dcc0ff Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Tue, 4 Apr 2017 09:32:26 -0400 Subject: [PATCH] Respond to CR. // FREEBIE --- Signal/src/ViewControllers/BlockListViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/ViewControllers/BlockListViewController.m b/Signal/src/ViewControllers/BlockListViewController.m index 41534e71e..701a85549 100644 --- a/Signal/src/ViewControllers/BlockListViewController.m +++ b/Signal/src/ViewControllers/BlockListViewController.m @@ -116,13 +116,13 @@ typedef NS_ENUM(NSInteger, BlockListViewControllerSection) { case BlockListViewControllerSection_Add: cell.textLabel.text = NSLocalizedString( @"SETTINGS_BLOCK_LIST_ADD_BUTTON", @"A label for the 'add phone number' button in the block list table."); - cell.textLabel.font = [UIFont ows_mediumFontWithSize:18.f]; + cell.textLabel.font = [UIFont ows_regularFontWithSize:18.f]; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; break; case BlockListViewControllerSection_BlockList: { NSString *displayName = [self displayNameForIndexPath:indexPath]; cell.textLabel.text = displayName; - cell.textLabel.font = [UIFont ows_mediumFontWithSize:18.f]; + cell.textLabel.font = [UIFont ows_regularFontWithSize:18.f]; cell.accessoryType = UITableViewCellAccessoryCheckmark; break; }