citra_qt: multiplayer password dialog fix
This commit is contained in:
parent
9c65a45358
commit
784c41bf34
|
@ -72,7 +72,7 @@ QString Lobby::PasswordPrompt() {
|
||||||
bool ok;
|
bool ok;
|
||||||
const QString text =
|
const QString text =
|
||||||
QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
|
QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
|
||||||
QLineEdit::Normal, tr("Password"), &ok);
|
QLineEdit::Password, "", &ok);
|
||||||
return ok ? text : QString();
|
return ok ? text : QString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue