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

Disable feedforward switch action for old versions

This commit is contained in:
Asizon 2021-07-08 16:10:44 +02:00
parent 5fb3007a17
commit 63e3130aae
3 changed files with 9 additions and 2 deletions

View file

@ -329,7 +329,7 @@ TABS.pid_tuning.initialize = function (callback) {
// Feedforward column
$('#pid_main tr :nth-child(6)').hide();
$('#pid-tuning .feedforwardTransition').hide();
$('#pid-tuning .feedforwardGroup').hide();
}
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_41)) {
@ -531,6 +531,8 @@ TABS.pid_tuning.initialize = function (callback) {
$('.feedforwardOption').hide();
$('.vbatSagCompensation').hide();
$('.thrustLinearization').hide();
$('.feedforwardGroupCheckbox').addClass('switchery-disabled');
$('input[id="feedforwardGroup"]').prop('checked', true);
}
$('input[id="useIntegratedYaw"]').change(function() {