From f76da801fea2d2aeb2acaa8ee9846b12edc05ec4 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 17 May 2025 23:57:12 +0200 Subject: [PATCH] fix notif dismiss on right sidebar open --- .config/quickshell/modules/sidebarRight/SidebarRight.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/quickshell/modules/sidebarRight/SidebarRight.qml b/.config/quickshell/modules/sidebarRight/SidebarRight.qml index d9910a52..1feec0ec 100644 --- a/.config/quickshell/modules/sidebarRight/SidebarRight.qml +++ b/.config/quickshell/modules/sidebarRight/SidebarRight.qml @@ -203,6 +203,7 @@ Scope { function toggle(): void { sidebarLoader.active = !sidebarLoader.active; + if(sidebarLoader.active) Notifications.timeoutAll(); } function close(): void { @@ -211,6 +212,7 @@ Scope { function open(): void { sidebarLoader.active = true; + Notifications.timeoutAll(); } } @@ -220,6 +222,7 @@ Scope { onPressed: { sidebarLoader.active = !sidebarLoader.active; + if(sidebarLoader.active) Notifications.timeoutAll(); } } GlobalShortcut { @@ -228,6 +231,7 @@ Scope { onPressed: { sidebarLoader.active = true; + Notifications.timeoutAll(); } } GlobalShortcut {