From d74c106ecff7010528530e3eef542becb93d08f0 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Thu, 26 May 2022 21:58:42 -0400 Subject: [PATCH] homescreen: Fix app drawer header buttons not interactable --- .../package/contents/ui/appdrawer/AppDrawerHeader.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/containments/homescreens/default/package/contents/ui/appdrawer/AppDrawerHeader.qml b/containments/homescreens/default/package/contents/ui/appdrawer/AppDrawerHeader.qml index c22e09eb..321ba21a 100644 --- a/containments/homescreens/default/package/contents/ui/appdrawer/AppDrawerHeader.qml +++ b/containments/homescreens/default/package/contents/ui/appdrawer/AppDrawerHeader.qml @@ -19,6 +19,11 @@ PlasmaCore.ColorScope { colorGroup: PlasmaCore.Theme.ComplementaryColorGroup + // HACK: Here only to steal inputs the would normally be delivered to home + MouseArea { + anchors.fill: parent + } + RowLayout { anchors.topMargin: PlasmaCore.Units.smallSpacing anchors.leftMargin: PlasmaCore.Units.largeSpacing @@ -46,9 +51,4 @@ PlasmaCore.ColorScope { onClicked: root.switchToGridRequested() } } - - //HACK: Here only to steal inputs the would normally be delivered to home - MouseArea { - anchors.fill: parent - } }