From 1925ac34e9112fdeb1d36dcd64489d9822f41bdd Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 27 Oct 2023 16:31:47 +0800 Subject: [PATCH] Snackbar should always be opaque --- .../Sources/App/Views/WebReader/WebReaderContainer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/WebReader/WebReaderContainer.swift b/apple/OmnivoreKit/Sources/App/Views/WebReader/WebReaderContainer.swift index 040cc4f7c..942ea7cd2 100644 --- a/apple/OmnivoreKit/Sources/App/Views/WebReader/WebReaderContainer.swift +++ b/apple/OmnivoreKit/Sources/App/Views/WebReader/WebReaderContainer.swift @@ -614,7 +614,7 @@ struct WebReaderContainerView: View { .autohideIn(2) .position(.bottom) .animation(.spring()) - .closeOnTapOutside(true) + .isOpaque(false) } .onReceive(NSNotification.readerSnackBarPublisher) { notification in if let message = notification.userInfo?["message"] as? String {