mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix incorrect input popup when no vibration sources available
This commit is contained in:
parent
2b0e1a1dec
commit
7b3847cc5c
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue