We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41747c6 commit 5a13439Copy full SHA for 5a13439
src/js/tabs/pid_tuning.js
@@ -547,6 +547,10 @@ TABS.pid_tuning.initialize = function (callback) {
547
548
$('input[id="useIntegratedYaw"]').change(function() {
549
const checked = $(this).is(':checked');
550
+ if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_44)) {
551
+ this.sliderPidsMode = 0;
552
+ }
553
+ $('#pid_main .pid_data input').prop('disabled', !checked);
554
$('#pidTuningIntegratedYawCaution').toggle(checked);
555
}).change();
556
0 commit comments