From e8eeddc889a7a413d4fd0e8f198c08cd501b2cbd Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 3 May 2024 09:59:24 -0500 Subject: [PATCH] made private Signed-off-by: Matt Bruce --- VDS/Components/TileContainer/TileContainer.swift | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index d32c1169..314b16b8 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -108,6 +108,10 @@ open class TileContainerBase: Control where Padding $0.clipsToBounds = true } + private var containerView = View().with { + $0.isUserInteractionEnabled = false + } + //-------------------------------------------------- // MARK: - Public Properties //-------------------------------------------------- @@ -119,11 +123,6 @@ open class TileContainerBase: Control where Padding $0.isUserInteractionEnabled = false } - /// This is the container in which views will be pinned. - open var containerView = View().with { - $0.isUserInteractionEnabled = false - } - /// This is the view used to show the high light color for a onClick. open var highlightView = View().with { $0.isUserInteractionEnabled = false