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

Merge pull request #899 from wind0r/remove_disarm_kill_switch_disable

remove or hide setting which disallow disarming on throttle above low
This commit is contained in:
Michael Keller 2018-02-09 20:00:08 +13:00 committed by GitHub
commit 48ee8fea78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -628,6 +628,11 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
$('div.cycles').show();
}
if(semver.gte(CONFIG.apiVersion, "1.37.0") || !isExpertModeEnabled()) {
$('input[id="disarmkillswitch"]').prop('checked', true);
$('div.disarm').hide();
}
$('._smallAngle').hide();
if(semver.gte(CONFIG.apiVersion, "1.37.0")) {
$('input[id="configurationSmallAngle"]').val(ARMING_CONFIG.small_angle);