summary refs log tree commit diff
path: root/resources/qml/MatrixText.qml
diff options
context:
space:
mode:
authorLoren Burkholder <55629213+LorenDB@users.noreply.github.com>2022-04-22 19:43:25 -0400
committerGitHub <noreply@github.com>2022-04-22 23:43:25 +0000
commit9cf0e3ca5518d9b6f3cfe0ac42fefb18403c7fa6 (patch)
tree1bed5437942f666a213ab0b0f847ee1e9000eb7a /resources/qml/MatrixText.qml
parentFix flatpak CI (diff)
downloadnheko-9cf0e3ca5518d9b6f3cfe0ac42fefb18403c7fa6.tar.xz
Add member list and settings buttons to spaces (#1051)
* Add member list and settings buttons to spaces

* Un-buttonify the member list button

* Properly button settings *and* members
Diffstat (limited to 'resources/qml/MatrixText.qml')
-rw-r--r--resources/qml/MatrixText.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index ef39b7b2..69eb7cdb 100644
--- a/resources/qml/MatrixText.qml
+++ b/resources/qml/MatrixText.qml
@@ -10,6 +10,8 @@ import im.nheko 1.0
 TextEdit {
     id: r
 
+    property alias cursorShape: cs.cursorShape
+
     textFormat: TextEdit.RichText
     readOnly: true
     focus: false
@@ -28,6 +30,8 @@ TextEdit {
     }
 
     CursorShape {
+        id: cs
+
         anchors.fill: parent
         cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
     }