diff --git a/VDS/Components/Label/Label.swift b/VDS/Components/Label/Label.swift index 76dceb19..3aa5f05d 100644 --- a/VDS/Components/Label/Label.swift +++ b/VDS/Components/Label/Label.swift @@ -227,6 +227,11 @@ open class Label: UILabel, ViewProtocol, UserInfoable { open func updateAccessibility() { accessibilityLabel = text + if isEnabled { + accessibilityTraits.remove(.notEnabled) + } else { + accessibilityTraits.insert(.notEnabled) + } } //--------------------------------------------------