You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following issues are present in relation to the input logic of the minima fields on the PERF APPR page.
NONE, NO, NODH, NO DH are not accepted as valid entries for RADIO on the PERF APPR page. It also does not allow spaces, which is necessary to support NO DH as input.
RADIO accepts 0 which should be out of range
Both BARO and RADIO can be filled out at the same time
Expected behavior
All above listed inputs should be accepted as valid entries.
The RADIO field should not accept values <1
Both fields should never be filled out at the same time.
Steps to reproduce
Try to enter the above listed strings into the RADIO field.
Try to enter 0 as decision height
Try to fill out both fields without clearing the other first.
References (optional)
Additional info (optional)
No response
Discord Username (optional)
examplewastaken
The text was updated successfully, but these errors were encountered:
Hi,
Not an MSFS developer but just trying to help developement team.
In aircraft/fbw-a380x/src/systems/instruments/src/MFD/pages/FMS
/MfdFmsPerf.tsx from line 2522 to 2530, it seems that we can configure RADIO with the value we want, even the value's more than 1ft.
Proposal : dataHandlerDuringValidation={async (v) => { if (v === undefined) { SimVar.SetSimVarValue('L:AIRLINER_DECISION_HEIGHT', 'feet', -1); } else if (v === null) { SimVar.SetSimVarValue('L:AIRLINER_DECISION_HEIGHT', 'feet', -2); } else if (v > 1) { SimVar.SetSimVarValue('L:AIRLINER_DECISION_HEIGHT', 'feet', -1); } else { SimVar.SetSimVarValue('L:AIRLINER_DECISION_HEIGHT', 'feet', v); } }}
thomasshrm
added a commit
to thomasshrm/aircraft
that referenced
this issue
Oct 22, 2024
Aircraft Version
Development
Build info
Describe the bug
The following issues are present in relation to the input logic of the minima fields on the PERF APPR page.
NONE
,NO
,NODH
,NO DH
are not accepted as valid entries for RADIO on the PERF APPR page. It also does not allow spaces, which is necessary to supportNO DH
as input.Expected behavior
Steps to reproduce
References (optional)
Additional info (optional)
No response
Discord Username (optional)
examplewastaken
The text was updated successfully, but these errors were encountered: