From 277e6b62965608ae90defa9a2170d414e09d4c59 Mon Sep 17 00:00:00 2001 From: Jake Stanger Date: Sun, 2 Jun 2024 15:38:44 +0100 Subject: [PATCH] fix(notifications): unable to click through overlay Fixes #620 --- src/modules/notifications.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/notifications.rs b/src/modules/notifications.rs index aadad64..339f3de 100644 --- a/src/modules/notifications.rs +++ b/src/modules/notifications.rs @@ -195,6 +195,7 @@ impl Module for NotificationsModule { if self.show_count { label.add_class("count"); overlay.add_overlay(&label); + overlay.set_overlay_pass_through(&label, true); } let ctx = context.controller_tx.clone();