QmlProfiler: Use ClosedHandCursor for dragging categories

It fits better to the OpenHandCursor we show when not dragging.

Change-Id: I6d3d635b4d56dc0b6e5baa502722cac045e2e6e2
Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
This commit is contained in:
Ulf Hermann
2014-11-28 14:26:48 +01:00
parent 16c3745da4
commit 55a6050f37

View File

@@ -97,7 +97,7 @@ Item {
id: dragArea id: dragArea
anchors.fill: txt anchors.fill: txt
drag.target: dragger drag.target: dragger
cursorShape: dragging ? Qt.DragMoveCursor : Qt.OpenHandCursor cursorShape: dragging ? Qt.ClosedHandCursor : Qt.OpenHandCursor
} }
DropArea { DropArea {