1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-17 13:25:24 +03:00

Fix rateprofiles

This commit is contained in:
IvoFPV 2019-09-09 14:41:40 +02:00
parent 3871b4b4cc
commit 69f3387a02

View file

@ -298,7 +298,7 @@ TuningSliders.calculateNewPids = function() {
PID_names.forEach(function(elementPid, indexPid) {
let searchRow = $('.pid_tuning .' + elementPid + ' input');
searchRow.each(function (indexInput) {
if (indexPid < 3) {
if (indexPid < 3 && indexInput < 3) {
$(this).val(PIDs[indexPid][indexInput]);
}
});