From 917d9838619bfde0a8b59c29cdbe76e266646b49 Mon Sep 17 00:00:00 2001 From: rope Date: Tue, 26 May 2026 17:42:43 +0100 Subject: [PATCH] quickshell: open tray menu on left-click too Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 905e6cb..d7a64c5 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -881,7 +881,7 @@ in anchors.fill: parent acceptedButtons: Qt.LeftButton | Qt.RightButton onClicked: (event) => { - if (event.button === Qt.RightButton && modelData.hasMenu) { + if (modelData.hasMenu) { bar.toggleDropdown(contextMenu, function() { let pos = parent.mapToItem(bar.contentItem, parent.width / 2, 0); contextMenu.dropdownX = pos.x;