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()
}
|