summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2025-01-19 23:52:58 +0100
committerGitHub <noreply@github.com>2025-01-19 23:52:58 +0100
commitd87ee2daa5dbebc786f57ea905afaeaafe3a49b1 (patch)
treedc11f2383cafee21a7fa18a817f9169c1ad6d6bf /Source
parent015c2e770981f5d1163c7184d318fb4c5bc6d15b (diff)
parent205a85b99144e3c6c6dd3adb52075a51fb7e1d03 (diff)
Merge pull request #13281 from jordan-woyak/iowindow-signal-proper-fix
DolphinQt: Fix QObject::connect: signal not found in IOWindow error.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp2
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 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); });
}