diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2025-01-16 10:04:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-16 10:04:55 +0100 |
| commit | 2c83a256ae4b954314f5cef1d1d60792f06bd84b (patch) | |
| tree | ebab595ad99c855ce119404111a1172ccc7168d9 /Source/Core | |
| parent | c344514ba2f40bc0c10b5103d1ab77c6f738d602 (diff) | |
| parent | c3f66e83e6d9e1fa6cee7880a8cbf4c725f14066 (diff) | |
Merge pull request #13277 from jordan-woyak/iowindow-debug-assert-fix
DolphinQt: Fix ASSERT failure in IOWindow in debug build.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp index f2b4805f54..0a77ae20f2 100644 --- a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp @@ -541,7 +541,7 @@ void IOWindow::ConnectWidgets() const auto lock = m_controller->GetStateLock(); m_reference->State(0.0); }); - connect(this, &QWidget::destroyed, this, &IOWindow::TestOutputComplete); + connect(this, &IOWindow::closeEvent, this, &IOWindow::TestOutputComplete); connect(m_button_box, &QDialogButtonBox::clicked, this, &IOWindow::OnDialogButtonPressed); connect(m_devices_combo, &QComboBox::currentTextChanged, this, &IOWindow::OnDeviceChanged); |
