1
0
mirror of https://github.com/Lime3DS/Lime3DS.git synced 2025-02-16 09:23:36 +01:00

citra_qt/RecordDialog: close when OK is clicked

The OK button didn't do anything before.
This commit is contained in:
vvanelslande 2019-09-21 09:35:12 -05:00
parent 223bfc9a2a
commit a650402eb5

@ -52,6 +52,7 @@ RecordDialog::RecordDialog(QWidget* parent, const IPCDebugger::RequestRecord& re
connect(ui->cmdbufSelection, qOverload<int>(&QComboBox::currentIndexChanged), this, connect(ui->cmdbufSelection, qOverload<int>(&QComboBox::currentIndexChanged), this,
&RecordDialog::UpdateCmdbufDisplay); &RecordDialog::UpdateCmdbufDisplay);
connect(ui->okButton, &QPushButton::clicked, this, &QDialog::close);
} }
RecordDialog::~RecordDialog() = default; RecordDialog::~RecordDialog() = default;