Fix hovering media not changing mouse cursor shape
This commit is contained in:
parent
8623edc420
commit
9edfba8f18
|
@ -59,7 +59,7 @@ ListView {
|
||||||
onSelectedCountChanged: if (! selectedCount) lastCheckedDelegateIndex = 0
|
onSelectedCountChanged: if (! selectedCount) lastCheckedDelegateIndex = 0
|
||||||
|
|
||||||
|
|
||||||
property alias cursorShape: mouseArea.cursorShape
|
property alias cursorShape: cursorShapeArea.cursorShape
|
||||||
property int currentItemHeight: currentItem ? currentItem.height : 0
|
property int currentItemHeight: currentItem ? currentItem.height : 0
|
||||||
|
|
||||||
property var checked: ({})
|
property var checked: ({})
|
||||||
|
@ -131,8 +131,13 @@ ListView {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: cursorShapeArea
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
}
|
||||||
|
|
||||||
HKineticScrollingDisabler {
|
HKineticScrollingDisabler {
|
||||||
id: mouseArea
|
|
||||||
width: enabled ? parent.width : 0
|
width: enabled ? parent.width : 0
|
||||||
height: enabled ? parent.height : 0
|
height: enabled ? parent.height : 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user