From bb1caaf3ce89b4acdff8f36e0f3adc237c7d9061 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Mon, 2 Jul 2018 15:14:38 -0400 Subject: [PATCH] Tweak profile names. --- .../ConversationView/Cells/OWSMessageBubbleView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m index 58cc0ecc7..e550c1f4e 100644 --- a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m +++ b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m @@ -691,7 +691,7 @@ NS_ASSUME_NONNULL_BEGIN + (UIFont *)senderNameFont { - return UIFont.ows_dynamicTypeCaption2Font; + return UIFont.ows_dynamicTypeSubheadlineFont; } + (NSDictionary *)senderNamePrimaryAttributes @@ -705,7 +705,7 @@ NS_ASSUME_NONNULL_BEGIN + (NSDictionary *)senderNameSecondaryAttributes { return @{ - NSFontAttributeName : self.senderNameFont, + NSFontAttributeName : UIFont.ows_dynamicTypeCaption2Font, NSForegroundColorAttributeName : [ConversationStyle.bubbleTextColorIncoming colorWithAlphaComponent:0.75f], }; }