From 18c68b39495910fec915ecf7a4b3cf538cc55800 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 25 Apr 2024 14:56:58 -0500 Subject: [PATCH] removed plural Signed-off-by: Matt Bruce --- VDS/Components/TileContainer/TileContainer.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index 61b91eaf..cef80bcc 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -171,7 +171,7 @@ open class TileContainerBase: Control where Padding open var showBorder: Bool = false { didSet { setNeedsUpdate() } } /// Determines if there is a drop shadow or not. - open var showDropShadows: Bool = false { didSet { setNeedsUpdate() } } + open var showDropShadow: Bool = false { didSet { setNeedsUpdate() } } //-------------------------------------------------- // MARK: - Constraints @@ -274,7 +274,7 @@ open class TileContainerBase: Control where Padding width = nil height = nil showBorder = false - showDropShadows = false + showDropShadow = false shouldUpdateView = true setNeedsUpdate() } @@ -316,7 +316,7 @@ open class TileContainerBase: Control where Padding widthConstraint?.isActive = false heightConstraint?.isActive = false } - if showDropShadows, surface == .light { + if showDropShadow, surface == .light { addDropShadow(dropShadowConfiguration) } else { removeDropShadows()