From a5a2cd147e82add90ec8cb123607ac5f2eff0fd4 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 22 Jun 2020 21:03:08 -0400 Subject: [PATCH] Fix attachment blur view missing corner radius --- Tusker/Views/Attachments/AttachmentsContainerView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tusker/Views/Attachments/AttachmentsContainerView.swift b/Tusker/Views/Attachments/AttachmentsContainerView.swift index 08216ba8..63a3afb6 100644 --- a/Tusker/Views/Attachments/AttachmentsContainerView.swift +++ b/Tusker/Views/Attachments/AttachmentsContainerView.swift @@ -37,6 +37,8 @@ class AttachmentsContainerView: UIView { super.awakeFromNib() self.isUserInteractionEnabled = true + self.layer.cornerRadius = 5 + self.layer.masksToBounds = true createBlurView() createHideButton()