mirror of
https://github.com/PabloMK7/citra.git
synced 2025-12-17 04:38:48 +00:00
Qt: Fixed behaviour of buttons by connecting functors to correct signals
Following screens got fixes: - Cheats - Configure/Debug - Configure/Input - Chat Room - Direct Connect - Host - Lobby List
This commit is contained in:
parent
a9df1c29f9
commit
4fd22c6a14
8 changed files with 22 additions and 21 deletions
|
|
@ -40,7 +40,7 @@ ClientRoomWindow::ClientRoomWindow(QWidget* parent)
|
|||
// TODO (jroweboy) network was not initialized?
|
||||
}
|
||||
|
||||
connect(ui->disconnect, &QPushButton::pressed, [this] { Disconnect(); });
|
||||
connect(ui->disconnect, &QPushButton::clicked, this, &ClientRoomWindow::Disconnect);
|
||||
ui->disconnect->setDefault(false);
|
||||
ui->disconnect->setAutoDefault(false);
|
||||
connect(ui->moderation, &QPushButton::clicked, [this] {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue