From de8cef52bb9510320b0e34f1d21dd3ef7ab61ac0 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 29 Jun 2018 09:15:12 -0400 Subject: [PATCH] Tweak message contents. --- .../Cells/OWSMessageFooterView.m | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m index c6dd06e91..8bb4be310 100644 --- a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m +++ b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageFooterView.m @@ -76,25 +76,6 @@ NS_ASSUME_NONNULL_BEGIN [self configureLabelsWithConversationViewItem:viewItem]; - - // TODO: Constants - for (UIView *subview in @[ - self.timestampLabel, - self.statusIndicatorImageView, - ]) { - if (isOverlayingMedia) { - subview.layer.shadowColor = [UIColor blackColor].CGColor; - subview.layer.shadowOpacity = 0.35f; - subview.layer.shadowOffset = CGSizeZero; - subview.layer.shadowRadius = 0.5f; - } else { - subview.layer.shadowColor = nil; - subview.layer.shadowOpacity = 0.f; - subview.layer.shadowOffset = CGSizeZero; - subview.layer.shadowRadius = 0.f; - } - } - UIColor *textColor; if (isOverlayingMedia) { textColor = [UIColor whiteColor];