From 205a85b99144e3c6c6dd3adb52075a51fb7e1d03 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Fri, 17 Jan 2025 20:16:04 -0600 Subject: [PATCH] DolphinQt: Fix QObject::connect: signal not found in IOWindow error. --- Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp index 0a77ae20f2..901aa8832a 100644 --- a/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp @@ -541,7 +541,6 @@ void IOWindow::ConnectWidgets() const auto lock = m_controller->GetStateLock(); m_reference->State(0.0); }); - 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); @@ -587,6 +586,7 @@ void IOWindow::ConnectWidgets() }); // revert the expression when the window closes without using the OK button + // UpdateExpression will also ensure an active rumble test is stopped when the dialog closes. connect(this, &IOWindow::finished, [this] { UpdateExpression(m_original_expression); }); }