diff --git a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsMinimizedDelegate.qml b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsMinimizedDelegate.qml index 391c4148..3ce0c437 100644 --- a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsMinimizedDelegate.qml +++ b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsMinimizedDelegate.qml @@ -39,6 +39,7 @@ QuickSettingsDelegate { id: mouseArea onClicked: root.delegateClick() onPressAndHold: root.delegatePressAndHold() + cursorShape: Qt.PointingHandCursor PlasmaCore.IconItem { id: icon diff --git a/components/mobileshell/qml/taskswitcher/Task.qml b/components/mobileshell/qml/taskswitcher/Task.qml index 60a74112..6578a060 100644 --- a/components/mobileshell/qml/taskswitcher/Task.qml +++ b/components/mobileshell/qml/taskswitcher/Task.qml @@ -59,11 +59,14 @@ Item { } } - Item { + MouseArea { id: control width: parent.width height: parent.height + // set cursor shape here, since taphandler seems to not be able to do it + cursorShape: Qt.PointingHandCursor + property bool movingUp: false property real oldY: y onYChanged: { @@ -75,7 +78,6 @@ Item { DragHandler { id: dragHandler target: parent - cursorShape: Qt.PointingHandCursor yAxis.enabled: true xAxis.enabled: false @@ -191,8 +193,8 @@ Item { color: PlasmaCore.Theme.backgroundColor clip: true - // scale animation on press (for longer than 50ms) - property real zoomScale: (tapHandler.pressed && tapHandler.timeHeld > 0.05) ? 0.9 : 1 + // scale animation on press + property real zoomScale: tapHandler.pressed ? 0.9 : 1 Behavior on zoomScale { NumberAnimation { duration: 200