From 312dd949b55de179a7e4e1b0207f4023b92810e9 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 8 Dec 2022 12:46:51 -0600 Subject: [PATCH] added success to UIControl.State Signed-off-by: Matt Bruce --- VDS/Extensions/UIControl.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/Extensions/UIControl.swift b/VDS/Extensions/UIControl.swift index 057f4dac..abccd3f3 100644 --- a/VDS/Extensions/UIControl.swift +++ b/VDS/Extensions/UIControl.swift @@ -10,4 +10,5 @@ import UIKit extension UIControl.State { public static var error = UIControl.State(rawValue: 1 << 16) + public static var success = UIControl.State(rawValue: 1 << 16) }