From 8e0287c8fd9f975d2180531728246956ace27586 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 28 May 2024 09:33:10 -0500 Subject: [PATCH] added readonly Signed-off-by: Matt Bruce --- VDS/Extensions/UIControl.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VDS/Extensions/UIControl.swift b/VDS/Extensions/UIControl.swift index e978bed9..761e502d 100644 --- a/VDS/Extensions/UIControl.swift +++ b/VDS/Extensions/UIControl.swift @@ -15,4 +15,7 @@ extension UIControl.State { /// State for Success public static var success = UIControl.State(rawValue: 1 << 17) + + /// State for Success + public static var readonly = UIControl.State(rawValue: 1 << 18) }