updated access specifier to public

This commit is contained in:
Krishna Kishore Bandaru 2023-03-28 18:50:45 +05:30
parent 8788e0a3ab
commit 2b957cc4af

View File

@ -314,7 +314,7 @@ import MVMCore
} }
/// Adjust accessibility label based on state of Checkbox. /// Adjust accessibility label based on state of Checkbox.
func updateAccessibilityLabel() { public func updateAccessibilityLabel() {
// Attention: This needs to be addressed with the accessibility team. // Attention: This needs to be addressed with the accessibility team.
// NOTE: Currently emptying description part of MVMCoreUICheckBox accessibility label to avoid crashing! // NOTE: Currently emptying description part of MVMCoreUICheckBox accessibility label to avoid crashing!
if let state = MVMCoreUIUtility.hardcodedString(withKey: isSelected ? "checkbox_checked_state" : "checkbox_unchecked_state") { if let state = MVMCoreUIUtility.hardcodedString(withKey: isSelected ? "checkbox_checked_state" : "checkbox_unchecked_state") {