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.
This commit is contained in:
Shantanu Tushar 2020-07-13 23:05:33 +05:30
parent cc86759139
commit c0e721429c

View File

@ -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)