turn off userinteractive

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-02-14 08:32:30 -06:00
parent dff9ec1eef
commit 37346b1f65

View File

@ -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() } }