From 30344fd6971d1942868edd02c55a3577b2e0a5d0 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Thu, 9 Sep 2021 18:02:42 +0200 Subject: [PATCH] drawer: Fix animation Don't use tapping on an application to start it like the start of a drawer dragging session --- components/mobilehomescreencomponents/qml/DrawerDelegate.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/mobilehomescreencomponents/qml/DrawerDelegate.qml b/components/mobilehomescreencomponents/qml/DrawerDelegate.qml index e85fa193..80329e02 100644 --- a/components/mobilehomescreencomponents/qml/DrawerDelegate.qml +++ b/components/mobilehomescreencomponents/qml/DrawerDelegate.qml @@ -35,7 +35,9 @@ MouseArea { }) } + propagateComposedEvents: true onClicked: { + mouse.accepted = true if (model.applicationRunning) { delegate.launch(0, 0, "", model.applicationName, model.applicationStorageId); } else {