mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
qt/config_input: don't connect for null button
This commit is contained in:
parent
5a692ddaec
commit
b5faa68120
@ -79,11 +79,14 @@ ConfigureInput::ConfigureInput(QWidget* parent)
|
|||||||
|
|
||||||
for (int analog_id = 0; analog_id < Settings::NativeAnalog::NumAnalogs; analog_id++) {
|
for (int analog_id = 0; analog_id < Settings::NativeAnalog::NumAnalogs; analog_id++) {
|
||||||
for (int sub_button_id = 0; sub_button_id < ANALOG_SUB_BUTTONS_NUM; sub_button_id++) {
|
for (int sub_button_id = 0; sub_button_id < ANALOG_SUB_BUTTONS_NUM; sub_button_id++) {
|
||||||
connect(analog_map[analog_id][sub_button_id], &QPushButton::released, [=]() {
|
if (analog_map[analog_id][sub_button_id] != nullptr) {
|
||||||
handleClick(analog_map[analog_id][sub_button_id], [=](int key) {
|
connect(analog_map[analog_id][sub_button_id], &QPushButton::released, [=]() {
|
||||||
SetAnalogKey(key, analogs_param[analog_id], analog_sub_buttons[sub_button_id]);
|
handleClick(analog_map[analog_id][sub_button_id], [=](int key) {
|
||||||
|
SetAnalogKey(key, analogs_param[analog_id],
|
||||||
|
analog_sub_buttons[sub_button_id]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user