summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-06-11 20:46:57 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-07-20 21:47:22 -0400
commita176de5f11f11bb3dad6cb8ea71a3b5edd6f27f4 (patch)
treee5c3029a89923cf2d67bd981432f9e61c0b9480f /resources/qml
parentGet member info loading working (diff)
downloadnheko-a176de5f11f11bb3dad6cb8ea71a3b5edd6f27f4.tar.xz
Make sure to use the default room id if none is specified
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/InviteDialog.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/InviteDialog.qml b/resources/qml/InviteDialog.qml
index d5cc4c6d..278f772f 100644
--- a/resources/qml/InviteDialog.qml
+++ b/resources/qml/InviteDialog.qml
@@ -43,10 +43,11 @@ ApplicationWindow {
         RowLayout {
             spacing: 10
 
-            TextField {
+            MatrixTextField {
                 id: inviteeEntry
 
                 placeholderText: qsTr("@joe:matrix.org", "Example user id. The name 'joe' can be localized however you want.")
+                backgroundColor: colors.window
                 Layout.fillWidth: true
                 onAccepted: if (text !== "") addInvite()
             }