From 9152df4b4fc2e2ee4ba2268968ab3749051ba035 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Thu, 14 Jul 2022 16:35:29 +0100 Subject: [PATCH] Accept keys in windowheap conditionally In WindowHeap we currently always accept the keyboard event regardless of whether the event was handled. This will allow the event to propagate to other handlers --- src/effects/private/qml/WindowHeap.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/effects/private/qml/WindowHeap.qml b/src/effects/private/qml/WindowHeap.qml index b110de265e..977767acf3 100644 --- a/src/effects/private/qml/WindowHeap.qml +++ b/src/effects/private/qml/WindowHeap.qml @@ -315,6 +315,7 @@ FocusScope { } } if (selectedItem) { + handled = true; KWinComponents.Workspace.activeClient = selectedItem.client; heap.activated(); }