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

Merge pull request #2714 from haslinghuis/fix_auto_factor

RC smoothing auto factor tooltip text for 4.3
This commit is contained in:
Ivan Efimov 2022-01-06 18:20:01 -06:00 committed by GitHub
commit fb3f3b9700
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View file

@ -631,6 +631,10 @@ TABS.receiver.initialize = function (callback) {
$('.tab-receiver .rcSmoothing-auto-factor').hide();
}
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_44)) {
$('.receiverRcSmoothingAutoFactorHelp').attr('title', i18n.getMessage("receiverRcSmoothingAutoFactorHelp2"));
}
updateInterpolationView();
} else {
$('.tab-receiver .rcInterpolation').show();