Make update views function public

This commit is contained in:
david-swift 2024-07-07 06:32:10 +02:00
parent 25d1d66137
commit fcc8ec4d7c

View File

@ -51,7 +51,7 @@ public enum StateManager {
/// - Parameter force: Whether to force all views to update.
///
/// Nothing happens if ``UpdateManager/blockUpdates`` is true.
static func updateViews(force: Bool = false) {
public static func updateViews(force: Bool = false) {
if !blockUpdates {
for handler in updateHandlers {
handler(force)