1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-25 17:25:14 +03:00
This commit is contained in:
Darren Lines 2022-11-27 09:41:50 +00:00
parent c071572e54
commit abf47a3742
2 changed files with 10 additions and 2 deletions

View file

@ -596,6 +596,10 @@ helper.defaultsDialog = (function () {
key: "nav_wp_radius",
value: 5000
},
{
key: "nav_wp_safe_distance",
value: 500
},
{
key: "nav_fw_launch_max_angle",
value: 45
@ -819,6 +823,10 @@ helper.defaultsDialog = (function () {
key: "nav_wp_radius",
value: 5000
},
{
key: "nav_wp_safe_distance",
value: 500
},
{
key: "nav_fw_launch_max_angle",
value: 75
@ -884,7 +892,7 @@ helper.defaultsDialog = (function () {
},
{
key: "nav_wp_safe_distance",
value: 50000
value: 500
},
{
key: "nav_fw_loiter_radius",

View file

@ -414,7 +414,7 @@
</div>
<div class="number">
<input type="number" id="waypointSafeDistance" data-unit="cm" data-setting="nav_wp_safe_distance" data-setting-multiplier="1" step="1" min="0" max="65000" />
<input type="number" id="waypointSafeDistance" data-unit="m" data-setting="nav_wp_safe_distance" data-setting-multiplier="1" step="1" min="0" max="1500" />
<label for="waypointSafeDistance"><span data-i18n="waypointSafeDistance"></span></label>
<div for="waypointSafeDistance" class="helpicon cf_tip" data-i18n_title="waypointSafeDistanceHelp"></div>
</div>