Add cancel option to analog stick configuration
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
This commit is contained in:
parent
50b5bb44a0
commit
22fd208e8d
1 changed files with 10 additions and 7 deletions
|
@ -301,13 +301,16 @@ ConfigureInputPlayer::ConfigureInputPlayer(QWidget* parent, std::size_t player_i
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
connect(analog_map_stick[analog_id], &QPushButton::clicked, [=] {
|
connect(analog_map_stick[analog_id], &QPushButton::clicked, [=] {
|
||||||
QMessageBox::information(this, tr("Information"),
|
if (QMessageBox::information(
|
||||||
tr("After pressing OK, first move your joystick horizontally, "
|
this, tr("Information"),
|
||||||
"and then vertically."));
|
tr("After pressing OK, first move your joystick horizontally, "
|
||||||
HandleClick(
|
"and then vertically."),
|
||||||
analog_map_stick[analog_id],
|
QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Ok) {
|
||||||
[=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; },
|
HandleClick(
|
||||||
InputCommon::Polling::DeviceType::Analog);
|
analog_map_stick[analog_id],
|
||||||
|
[=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; },
|
||||||
|
InputCommon::Polling::DeviceType::Analog);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue