summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-08-06 19:19:13 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-08-06 19:19:13 +0200
commitdbaddb01658e67a69db8121bcd24bf82754855c6 (patch)
treef3d3c15176e4db0e810e24108d60750f3af30951
parentFix double free by closing cursor at the right time (diff)
downloadnheko-dbaddb01658e67a69db8121bcd24bf82754855c6.tar.xz
Further tweak text element
-rw-r--r--resources/qml/MatrixText.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml

index cbb55bea..5762caae 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml
@@ -5,7 +5,8 @@ TextEdit { textFormat: TextEdit.RichText readOnly: true wrapMode: Text.Wrap - selectByMouse: ma.containsMouse // try to make scrollable by finger but selectable by mouse + selectByMouse: true + activeFocusOnPress: false color: colors.text onLinkActivated: { @@ -23,7 +24,6 @@ TextEdit { id: ma anchors.fill: parent propagateComposedEvents: true - hoverEnabled: true acceptedButtons: Qt.NoButton cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor }