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

Support for 16-bit DTerm Setpoint Weight

This commit is contained in:
Cleric-K 2018-06-06 00:22:32 +03:00
parent 5f68d5982c
commit 6a4e605506
4 changed files with 13 additions and 3 deletions

View file

@ -516,6 +516,10 @@ TABS.pid_tuning.initialize = function (callback) {
$('.tab-pid_tuning .pidTuningFeatures').hide();
}
if (semver.lt(CONFIG.apiVersion, "1.39.0")) {
$('input[name="dtermSetpoint-number"]').attr('max', '2.54');
}
// translate to user-selected language
i18n.localizePage();