DolphinQt: Fix ASSERT failure in IOWindow in debug build.

This commit is contained in:
Jordan Woyak 2025-01-15 16:23:03 -06:00
parent c344514ba2
commit c3f66e83e6
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ void IOWindow::ConnectWidgets()
const auto lock = m_controller->GetStateLock(); const auto lock = m_controller->GetStateLock();
m_reference->State(0.0); 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_button_box, &QDialogButtonBox::clicked, this, &IOWindow::OnDialogButtonPressed);
connect(m_devices_combo, &QComboBox::currentTextChanged, this, &IOWindow::OnDeviceChanged); connect(m_devices_combo, &QComboBox::currentTextChanged, this, &IOWindow::OnDeviceChanged);