summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/contents/ui/TextContent.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/mailviewer/contents/ui/TextContent.qml')
-rw-r--r--components/mailviewer/contents/ui/TextContent.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/mailviewer/contents/ui/TextContent.qml b/components/mailviewer/contents/ui/TextContent.qml
index b25aac17..ee3284d4 100644
--- a/components/mailviewer/contents/ui/TextContent.qml
+++ b/components/mailviewer/contents/ui/TextContent.qml
@@ -53,6 +53,12 @@ Item {
53 53
54 color: embedded ? Kube.Colors.disabledTextColor : Kube.Colors.textColor 54 color: embedded ? Kube.Colors.disabledTextColor : Kube.Colors.textColor
55 onLinkActivated: Qt.openUrlExternally(link) 55 onLinkActivated: Qt.openUrlExternally(link)
56 //TODO This might no longer be necessary starting with Qt 5.8
57 MouseArea {
58 anchors.fill: parent
59 acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Text
60 cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
61 }
56 } 62 }
57 } 63 }
58} 64}