Merge pull request #3705 from zhaowenlan1779/multiplayer-fix
citra_qt: multiplayer password dialog fix
This commit is contained in:
		@@ -70,9 +70,8 @@ Lobby::Lobby(QWidget* parent, QStandardItemModel* list,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
QString Lobby::PasswordPrompt() {
 | 
					QString Lobby::PasswordPrompt() {
 | 
				
			||||||
    bool ok;
 | 
					    bool ok;
 | 
				
			||||||
    const QString text =
 | 
					    const QString text = QInputDialog::getText(this, tr("Password Required to Join"),
 | 
				
			||||||
        QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
 | 
					                                               tr("Password:"), QLineEdit::Password, "", &ok);
 | 
				
			||||||
                              QLineEdit::Normal, tr("Password"), &ok);
 | 
					 | 
				
			||||||
    return ok ? text : QString();
 | 
					    return ok ? text : QString();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user