From 55a6050f37ad1ad60380782e87441d5467c569a1 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Fri, 28 Nov 2014 14:26:48 +0100 Subject: [PATCH] QmlProfiler: Use ClosedHandCursor for dragging categories It fits better to the OpenHandCursor we show when not dragging. Change-Id: I6d3d635b4d56dc0b6e5baa502722cac045e2e6e2 Reviewed-by: Alessandro Portale --- src/plugins/qmlprofiler/qml/CategoryLabel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmlprofiler/qml/CategoryLabel.qml b/src/plugins/qmlprofiler/qml/CategoryLabel.qml index da26964af9f..c2dfee56e58 100644 --- a/src/plugins/qmlprofiler/qml/CategoryLabel.qml +++ b/src/plugins/qmlprofiler/qml/CategoryLabel.qml @@ -97,7 +97,7 @@ Item { id: dragArea anchors.fill: txt drag.target: dragger - cursorShape: dragging ? Qt.DragMoveCursor : Qt.OpenHandCursor + cursorShape: dragging ? Qt.ClosedHandCursor : Qt.OpenHandCursor } DropArea {