1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 16:32:33 +02:00

Add mouse WaitCursor indicator

This commit is contained in:
Elias Steurer 2021-02-20 17:39:41 +01:00
parent c3f893071a
commit 65dc0b3a05

View File

@ -22,6 +22,16 @@ Item {
property alias steamWorkshop: screenPlayWorkshop.steamWorkshop
MouseArea {
enabled: gridView.count === 0
z: enabled ? 10 : 0
cursorShape: enabled ? Qt.WaitCursor : Qt.ArrowCursor
acceptedButtons: Qt.NoButton
propagateComposedEvents: true
anchors.fill: parent
preventStealing: true
}
ScreenPlayWorkshop {
id: screenPlayWorkshop
}