Skip to content

Commit

Permalink
Hide motor stop when airmode is enable
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Feb 2, 2025
1 parent 30fd6f5 commit b95b343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tabs/motors.js
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ motors.initialize = async function (callback) {
$("div.checkboxDshotBidir").toggle(digitalProtocolConfigured);
$("div.motorPoles").toggle(protocolConfigured && rpmFeaturesVisible);

$(".escMotorStop").toggle(protocolConfigured);
$(".escMotorStop").toggle(protocolConfigured && !FC.FEATURE_CONFIG.features.isEnabled("AIRMODE"));

$("#escProtocolDisabled").toggle(!protocolConfigured);

Expand Down

0 comments on commit b95b343

Please sign in to comment.