Merge pull request #3705 from zhaowenlan1779/multiplayer-fix

citra_qt: multiplayer password dialog fix
This commit is contained in:
James Rowe 2018-05-02 09:17:33 -06:00 committed by GitHub
commit ca3b82caa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,9 +70,8 @@ Lobby::Lobby(QWidget* parent, QStandardItemModel* list,
QString Lobby::PasswordPrompt() {
bool ok;
const QString text =
QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
QLineEdit::Normal, tr("Password"), &ok);
const QString text = QInputDialog::getText(this, tr("Password Required to Join"),
tr("Password:"), QLineEdit::Password, "", &ok);
return ok ? text : QString();
}