diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index 0e52441a..ec996019 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -79,9 +79,13 @@ open class TileContainer: Control { //-------------------------------------------------- public var backgroundImage: UIImage? { didSet{ didChange() } } - public var containerView = View() + public var containerView = View().with { + $0.isUserInteractionEnabled = false + } - public var highlightView = View() + public var highlightView = View().with { + $0.isUserInteractionEnabled = false + } public var color: BackgroundColor = .white { didSet{ didChange() } }