fix notif dismiss on right sidebar open

This commit is contained in:
end-4 2025-05-17 23:57:12 +02:00
parent 8533310f29
commit f76da801fe

View file

@ -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 {