From 774310396cc039c382189f38c3390bace311ed10 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 27 Jun 2018 13:48:18 -0400 Subject: [PATCH] Clean up ahead of PR. --- .../ConversationView/Cells/OWSMessageBubbleView.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m index 777b80eab..accc79bcd 100644 --- a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m +++ b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m @@ -365,10 +365,9 @@ NS_ASSUME_NONNULL_BEGIN // TODO: What's the difference between an inner and outer shadow? self.mediaShadowView.fillColor = self.bubbleColor; self.mediaShadowView.layer.shadowColor = [UIColor blackColor].CGColor; - self.mediaShadowView.layer.shadowOpacity = 0.08f; - self.mediaShadowView.layer.shadowOpacity = 1.f; - self.mediaShadowView.layer.shadowOffset = CGSizeMake(0.f, 2.f); - self.mediaShadowView.layer.shadowRadius = 8.f; + self.mediaShadowView.layer.shadowOpacity = 0.12f; + self.mediaShadowView.layer.shadowOffset = CGSizeMake(0.f, 0.f); + self.mediaShadowView.layer.shadowRadius = 0.5f; } else { [self.stackView addArrangedSubview:bodyMediaView]; }