Open ExampleWasTaken opened 1 month ago
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); } }}
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