From 96332a2c2f5a5b70319298b03bded81dda624344 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 16 Apr 2026 08:12:32 -0300 Subject: [PATCH] Fix click events leaking through the announcement toast (#54053) Quick fix here to prevent any click events in the announcement toast itself to leak through whatever is behind it. Release Notes: - N/A --- crates/ui/src/components/notification/announcement_toast.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ui/src/components/notification/announcement_toast.rs b/crates/ui/src/components/notification/announcement_toast.rs index 920f97f9959d1f6c2427ccd7645d15e859893aa4..215d8b9aedfa4584d97ab72b8d816c7a0e516fbc 100644 --- a/crates/ui/src/components/notification/announcement_toast.rs +++ b/crates/ui/src/components/notification/announcement_toast.rs @@ -101,6 +101,8 @@ impl RenderOnce for AnnouncementToast { let illustration = self.illustration; v_flex() + .id("announcement-toast") + .occlude() .relative() .w_full() .elevation_3(cx)