From c0e721429c3cab8883f6e4b6959d0ba808450476 Mon Sep 17 00:00:00 2001 From: Shantanu Tushar Date: Mon, 13 Jul 2020 23:05:33 +0530 Subject: [PATCH] Don't use hand cursor because it is not consistent We should use the normal arrow cursor when a list item is hovered. The hovered state is depicted with a highlight already, so the hand cursor is unnecessary and doesn't go well with the rest of the desktop. --- .../plasmaextracomponents/qml/ExpandableListItem.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/declarativeimports/plasmaextracomponents/qml/ExpandableListItem.qml b/src/declarativeimports/plasmaextracomponents/qml/ExpandableListItem.qml index 168ba28b9..aa25b5623 100644 --- a/src/declarativeimports/plasmaextracomponents/qml/ExpandableListItem.qml +++ b/src/declarativeimports/plasmaextracomponents/qml/ExpandableListItem.qml @@ -351,7 +351,6 @@ Item { acceptedButtons: Qt.RightButton hoverEnabled: true - cursorShape: Qt.PointingHandCursor // To indicate that the whole thing is clickable onContainsMouseChanged: listItem.ListView.view.currentIndex = (containsMouse ? index : -1)