From 8603cd7cb1f424dd7106a2e3d34a645db81ea247 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 14 Sep 2023 19:17:18 -0500 Subject: [PATCH] refactored Signed-off-by: Matt Bruce --- VDS/BaseClasses/Control.swift | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/VDS/BaseClasses/Control.swift b/VDS/BaseClasses/Control.swift index ce90d271..e4ba8cde 100644 --- a/VDS/BaseClasses/Control.swift +++ b/VDS/BaseClasses/Control.swift @@ -78,12 +78,7 @@ open class Control: UIControl, ViewProtocol, UserInfoable, Clickable { } /// Whether the Control is enabled or not. - open override var isEnabled: Bool { - didSet { - setNeedsUpdate() - //isUserInteractionEnabled = isEnabled - } - } + open override var isEnabled: Bool { didSet { setNeedsUpdate() } } //-------------------------------------------------- // MARK: - Lifecycle