summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2014-11-28 14:26:48 +0100
committerUlf Hermann <ulf.hermann@theqtcompany.com>2014-11-28 14:29:01 +0100
commit55a6050f37ad1ad60380782e87441d5467c569a1 (patch)
treebe5f803665ef779fea60201e0cdfa02402a0a2ff
parent16c3745da475ceea0fd20c2bf32ab38c89682a16 (diff)
downloadqt-creator-55a6050f37ad1ad60380782e87441d5467c569a1.tar.gz
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>
-rw-r--r--src/plugins/qmlprofiler/qml/CategoryLabel.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qml/CategoryLabel.qml b/src/plugins/qmlprofiler/qml/CategoryLabel.qml
index da26964af9..c2dfee56e5 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 {