From 97a3b551e2e61f8b0764ea1f8ea2f9d0b904c6ba Mon Sep 17 00:00:00 2001 From: Thomas Way Date: Tue, 17 Mar 2026 18:27:49 +0000 Subject: [PATCH] fix(mobile): ignore pointer events on toasts These toasts can sometimes cover UI elements and make them impossible to interact with until they are dismissed. Specifically, deleting an asset will show a toast over the video controls and prevent seeking. --- mobile/lib/widgets/common/immich_toast.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/widgets/common/immich_toast.dart b/mobile/lib/widgets/common/immich_toast.dart index dad8b33283..3e7ab273d8 100644 --- a/mobile/lib/widgets/common/immich_toast.dart +++ b/mobile/lib/widgets/common/immich_toast.dart @@ -55,7 +55,7 @@ class ImmichToast { bottom: gravity == ToastGravity.BOTTOM ? 150 : null, left: MediaQuery.of(context).size.width / 2 - 150, right: MediaQuery.of(context).size.width / 2 - 150, - child: child, + child: IgnorePointer(child: child), ); }, gravity: gravity,