From 02a9cc918131a390c4f88542a42a8f2aa4d9e2bc Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 7 Nov 2018 12:32:57 -0500 Subject: [PATCH] Remove stroke on album items. --- .../ConversationView/Cells/OWSMessageBubbleView.m | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m index fc8d5edcf..a3dc4cc47 100644 --- a/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m +++ b/Signal/src/ViewControllers/ConversationView/Cells/OWSMessageBubbleView.m @@ -794,14 +794,6 @@ const UIDataDetectorTypes kOWSAllowedDataDetectorTypes self.unloadCellContentBlock = ^{ [albumView unloadMedia]; }; - for (UIView *itemView in albumView.itemViews) { - OWSBubbleShapeView *strokeView = [[OWSBubbleShapeView alloc] initDraw]; - strokeView.strokeColor = [UIColor colorWithWhite:0.5f alpha:0.4f]; - strokeView.strokeThickness = 1.f; - [itemView addSubview:strokeView]; - [self.bubbleView addPartnerView:strokeView]; - [self.viewConstraints addObjectsFromArray:[strokeView ows_autoPinToSuperviewEdges]]; - } return albumView; }