mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
fix notif dismiss on right sidebar open
This commit is contained in:
parent
8533310f29
commit
f76da801fe
1 changed files with 4 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue