From 406ffd6c1546c43ec29795d86e424a7db4f3b3d0 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 24 Jul 2025 18:53:50 -0700 Subject: [PATCH] qs tray: close on click --- modules/user/modules/quickshell/shell/bar/systray/MenuItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/user/modules/quickshell/shell/bar/systray/MenuItem.qml b/modules/user/modules/quickshell/shell/bar/systray/MenuItem.qml index 326ccaf..2ed52d6 100644 --- a/modules/user/modules/quickshell/shell/bar/systray/MenuItem.qml +++ b/modules/user/modules/quickshell/shell/bar/systray/MenuItem.qml @@ -25,7 +25,7 @@ MouseArea { if (entry.hasChildren) childrenRevealer.expanded = !childrenRevealer.expanded else { entry.triggered(); - if (entry.toggleType == ToggleButtonType.None) close(); + close(); } }