Qt: Fix incorrect input popup when no vibration sources available

This commit is contained in:
Connor McLaughlin 2022-06-10 18:31:28 +10:00 committed by lightningterror
parent 2b0e1a1dec
commit 7b3847cc5c
1 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include <QtGui/QKeyEvent>
#include <QtGui/QMouseEvent>
#include <QtWidgets/QInputDialog>
#include <QtWidgets/QMessageBox>
#include <cmath>
#include <sstream>
@ -362,7 +363,14 @@ void InputVibrationBindingWidget::onClicked()
const QString current(QString::fromStdString(m_binding));
QStringList input_options(m_dialog->getVibrationMotors());
if (!current.isEmpty() && input_options.indexOf(current) < 0)
{
input_options.append(current);
}
else if (input_options.isEmpty())
{
QMessageBox::critical(QtUtils::GetRootWidget(this), tr("Error"), tr("No devices with vibration motors were detected."));
return;
}
QInputDialog input_dialog(this);
input_dialog.setWindowTitle(full_key);