From 63fa6f5c0011900b9cee37d9257f3cb79cf42e80 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 29 Jun 2018 14:33:45 -0400 Subject: [PATCH] Tweak read indicator color. --- .../ConversationView/Cells/OWSMessageFooterView.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m index 2625e36ca..1cb18f2f1 100644 --- a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m +++ b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m @@ -117,8 +117,7 @@ NS_ASSUME_NONNULL_BEGIN self.statusIndicatorImageView.image = [statusIndicatorImage imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate]; if (messageStatus == MessageReceiptStatusRead) { - // TODO: Tint the icon with the conversation color. - self.statusIndicatorImageView.tintColor = textColor; + self.statusIndicatorImageView.tintColor = [UIColor ows_signalBlueColor]; } else { self.statusIndicatorImageView.tintColor = textColor; }