From d8a103eac324f44321deb1167e61ce5f0d3dc4f5 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Sun, 7 Dec 2025 12:51:00 +0100 Subject: [PATCH] fix left clicking tray icons --- Modules/TrayItem.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Modules/TrayItem.qml b/Modules/TrayItem.qml index 0742629..bf90c09 100644 --- a/Modules/TrayItem.qml +++ b/Modules/TrayItem.qml @@ -14,6 +14,14 @@ Item { required property PanelWindow bar property bool hasLoaded: false + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.LeftButton + onClicked: { + root.item.activate(); + } + } + Image { id: icon