turn off userinteractive
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
dff9ec1eef
commit
37346b1f65
@ -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() } }
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user