From d382358766ce1f43102d46640593fd71601c6f06 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 20 Sep 2025 12:40:58 +0200 Subject: [PATCH] bar: tray: make action trigger on press --- .config/quickshell/ii/modules/bar/SysTrayItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/bar/SysTrayItem.qml b/.config/quickshell/ii/modules/bar/SysTrayItem.qml index 41389e85d..44323c3c5 100644 --- a/.config/quickshell/ii/modules/bar/SysTrayItem.qml +++ b/.config/quickshell/ii/modules/bar/SysTrayItem.qml @@ -19,7 +19,7 @@ MouseArea { acceptedButtons: Qt.LeftButton | Qt.RightButton implicitWidth: 20 implicitHeight: 20 - onClicked: (event) => { + onPressed: (event) => { switch (event.button) { case Qt.LeftButton: item.activate();