diff options
| author | J-P Nurmi <jpnurmi@digia.com> | 2013-06-17 16:02:33 +0200 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-06-24 12:10:29 +0200 |
| commit | 1d1e67f08bbcba973f1582871b87fb35d41c4eaa (patch) | |
| tree | d25c029e0c574bab3bf40b3527a3416eaadebc4f /src | |
| parent | 24ea4d8acf59a4f7c82afd24250591b6e88ff5c4 (diff) | |
TextArea: switch to Qt.PointingHandCursor when hovering links
Change-Id: I7c306093c1afc9f5dfe942cd29da427c6a57d869
Reviewed-by: Caroline Chao <caroline.chao@digia.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/controls/TextArea.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/TextArea.qml b/src/controls/TextArea.qml index c1bb9bcb8..ce5764c60 100644 --- a/src/controls/TextArea.qml +++ b/src/controls/TextArea.qml @@ -741,7 +741,7 @@ ScrollView { MouseArea { parent: area.viewport anchors.fill: parent - cursorShape: Qt.IBeamCursor + cursorShape: edit.hoveredLink ? Qt.PointingHandCursor : Qt.IBeamCursor acceptedButtons: Qt.NoButton } } |
