1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Merge pull request #464 from iNavFlight/dzikuvx-mixer-ouput-motor-indexing-fix

Index motors from 1 in output mapping preview
This commit is contained in:
Paweł Spychalski 2018-06-04 17:20:10 +02:00 committed by GitHub
commit 1c71d7bf08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ TABS.mixer.initialize = function (callback, scrollPosition) {
output = OUTPUT_MAPPING.getFwMotorOutput(index);
}
if (output !== null) {
$('#function-' + output).html("Motor " + index);
$('#function-' + output).html("Motor " + (index + 1));
}
}
}