summary refs log tree commit diff
path: root/resources/qml/MatrixText.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-10-24 14:42:18 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-10-24 14:42:18 +0200
commit53734607cf93d626c16f1b2ae72a7dea24d8460e (patch)
treee0c057dd2fdbe59aea481021a8eaac789e680893 /resources/qml/MatrixText.qml
parentFix infinite pagination properly now. (diff)
downloadnheko-53734607cf93d626c16f1b2ae72a7dea24d8460e.tar.xz
Fix copying text
Diffstat (limited to 'resources/qml/MatrixText.qml')
-rw-r--r--resources/qml/MatrixText.qml2
1 files changed, 0 insertions, 2 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index 6c96a539..f1ccf561 100644
--- a/resources/qml/MatrixText.qml
+++ b/resources/qml/MatrixText.qml
@@ -7,7 +7,6 @@ TextEdit {
     readOnly: true
     wrapMode: Text.Wrap
     selectByMouse: true
-    activeFocusOnPress: false
     color: colors.text
     onLinkActivated: {
         if (/^https:\/\/matrix.to\/#\/(@.*)$/.test(link)) {
@@ -29,7 +28,6 @@ TextEdit {
         id: ma
 
         anchors.fill: parent
-        propagateComposedEvents: true
         acceptedButtons: Qt.NoButton
         cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
     }