Skip to content
Snippets Groups Projects
Commit 88229e1e authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Jean-Baptiste Kempf
Browse files

qml: set cursorShape in CSDTapHandler

explicitely set cursor shape here so no other control can interfere, causing confusion (see #28115)
parent 4c88bf0e
No related branches found
No related tags found
1 merge request!3839qml: set cursorShape in CSDTapHandler
Pipeline #360498 passed with stage
in 17 minutes and 43 seconds
......@@ -49,6 +49,12 @@ Item {
}
gesturePolicy: TapHandler.DragThreshold
}
HoverHandler {
// explicitely set cursor shape here so no other control can interfere, causing confusion (see #28115)
cursorShape: Qt.ArrowCursor
}
DragHandler {
target: null
grabPermissions: TapHandler.CanTakeOverFromAnything
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment