From 6164f65f0af6ee57538c0714e72bde46695d9fb4 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Tue, 16 May 2017 12:17:47 -0400 Subject: [PATCH] Add unread indicator. // FREEBIE --- Signal/src/views/OWSUnreadIndicatorCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/views/OWSUnreadIndicatorCell.m b/Signal/src/views/OWSUnreadIndicatorCell.m index cb559e995..2971e25e9 100644 --- a/Signal/src/views/OWSUnreadIndicatorCell.m +++ b/Signal/src/views/OWSUnreadIndicatorCell.m @@ -47,7 +47,7 @@ pathBounds = CGRectInset(pathBounds, kLineMargin, 0); UIBezierPath *path = [UIBezierPath bezierPathWithRect:pathBounds]; layer.path = path.CGPath; - layer.fillColor = [UIColor ows_infoMessageBorderColor].CGColor; + layer.fillColor = [[UIColor ows_infoMessageBorderColor] colorWithAlphaComponent:0.5f].CGColor; }; self.leftPathView = [OWSBezierPathView new];