citra_qt: multiplayer password dialog fix

This commit is contained in:
zhupengfei
2018-05-01 11:15:31 +08:00
parent 9c65a45358
commit 784c41bf34

View File

@@ -72,7 +72,7 @@ QString Lobby::PasswordPrompt() {
bool ok;
const QString text =
QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
QLineEdit::Normal, tr("Password"), &ok);
QLineEdit::Password, "", &ok);
return ok ? text : QString();
}