From 5bd75786bc94964b4ddb647cbc34f3016ed39249 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 9 Oct 2019 16:11:10 +0200 Subject: [PATCH] prevent control from eating events --- containments/panel/package/contents/ui/DrawerBackground.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/containments/panel/package/contents/ui/DrawerBackground.qml b/containments/panel/package/contents/ui/DrawerBackground.qml index e86115c1..078e0fa2 100644 --- a/containments/panel/package/contents/ui/DrawerBackground.qml +++ b/containments/panel/package/contents/ui/DrawerBackground.qml @@ -32,5 +32,9 @@ QQC2.Control { background: PlasmaCore.FrameSvgItem { imagePath: "widgets/background" + // This MouseArea just prevents the Control from eating pure touch event (breaking flickables) + MouseArea { + anchors.fill:parent + } } }