From 540dc35e2f88e292a2f08711d255fff0a60f6beb Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sat, 29 Jun 2024 09:45:14 -0500 Subject: [PATCH] added cornerRadius back Signed-off-by: Matt Bruce --- VDS/Components/TileContainer/TileContainer.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index d7c3f74f..6eeaf316 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -250,6 +250,8 @@ open class TileContainerBase: Control where Padding //corner radius containerView.layer.cornerRadius = cornerRadius + backgroundImageView.layer.cornerRadius = cornerRadius + highlightView.layer.cornerRadius = cornerRadius containerView.clipsToBounds = true containerView.bridge_isAccessibilityElementBlock = { [weak self] in self?.onClickSubscriber != nil }