From 2b957cc4af4d81167e0db1165746659961c22fc7 Mon Sep 17 00:00:00 2001 From: Krishna Kishore Bandaru Date: Tue, 28 Mar 2023 18:50:45 +0530 Subject: [PATCH] updated access specifier to public --- MVMCoreUI/Atomic/Atoms/Selectors/Checkbox.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Atoms/Selectors/Checkbox.swift b/MVMCoreUI/Atomic/Atoms/Selectors/Checkbox.swift index 9efc554a..f771dddf 100644 --- a/MVMCoreUI/Atomic/Atoms/Selectors/Checkbox.swift +++ b/MVMCoreUI/Atomic/Atoms/Selectors/Checkbox.swift @@ -314,7 +314,7 @@ import MVMCore } /// Adjust accessibility label based on state of Checkbox. - func updateAccessibilityLabel() { + public func updateAccessibilityLabel() { // Attention: This needs to be addressed with the accessibility team. // 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") {