From 4885ace1070a3cc6615cba1e6a93924fb01cc969 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Sun, 2 Feb 2025 20:39:13 +0100 Subject: [PATCH] workspace: Prevent clicks from falling through on some notifications (#24104) Closes #ISSUE Release Notes: - N/A --- crates/workspace/src/notifications.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/workspace/src/notifications.rs b/crates/workspace/src/notifications.rs index 145c0b7aec3a3eb1e69c3bf63b5c9420a230572d..3a850e5e5c47ed83dfa06b2b6ae2ef2dda2f3f89 100644 --- a/crates/workspace/src/notifications.rs +++ b/crates/workspace/src/notifications.rs @@ -502,6 +502,7 @@ pub mod simple_message_notification { impl Render for MessageNotification { fn render(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { v_flex() + .occlude() .p_3() .gap_3() .elevation_3(cx)