diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2021-06-11 20:46:57 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2021-07-20 21:47:22 -0400 |
commit | a176de5f11f11bb3dad6cb8ea71a3b5edd6f27f4 (patch) | |
tree | e5c3029a89923cf2d67bd981432f9e61c0b9480f /resources/qml | |
parent | Get member info loading working (diff) | |
download | nheko-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.qml | 3 |
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() } |