From 37a112a04b960a7601311df640a6ee498e587e6c Mon Sep 17 00:00:00 2001 From: inorishio Date: Mon, 11 May 2026 19:41:56 +0200 Subject: [PATCH] Breaking zshell: toggle-launcher globalshortcut fix --- Modules/Shortcuts.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/Shortcuts.qml b/Modules/Shortcuts.qml index ced923c..82a27d3 100644 --- a/Modules/Shortcuts.qml +++ b/Modules/Shortcuts.qml @@ -14,11 +14,12 @@ Scope { description: "Toggle launcher" name: "toggle-launcher" - onPressed: root.launcherInterrupted = false - onReleased: { + onPressed: { + root.launcherInterrupted = false; if (!root.launcherInterrupted && !root.hasFullscreen) { const visibilities = Visibilities.getForActive(); visibilities.launcher = !visibilities.launcher; + console.log(root.launcherInterrupted); } root.launcherInterrupted = false; }