Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(a380x/efis): Fix VV pb indicator not turning on when TRK-FPA is selected #9656

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
1. [A380X/MFD] Use slashed zero as default font for FMS pages - @bulenteroglu (senolitam)
1. [A380X/ND] Remove leading zeros from terrain elevation display - @BravoMike99 (bruno_pt99)
1. [A32NX/FWS] Fix autopilot instinctive disconnect button logic for 3D model - @flogross89 (floridude)
1. [A380X/EFIS] Fix VV pb indicator not turning on when TRK-FPA mode is selected - @heclak (Heclak)

## 0.12.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
<!-- VV -->
<UseTemplate Name="FBW_A380X_BacklightIndicator_Button_Template">
<NODE_ID>PUSH_EFIS_#SIDE_NODE_GROUP#_VV</NODE_ID>
<TOGGLE_SIMVAR>L:A380X_EFIS_#SIDE_SIMVAR_GROUP#_VV_BUTTON_IS_ON</TOGGLE_SIMVAR>
<BUTTON_CODE>(L:A380X_EFIS_#SIDE_SIMVAR_GROUP#_VV_BUTTON_IS_ON, Boolean) ! (&gt;L:A380X_EFIS_#SIDE_SIMVAR_GROUP#_VV_BUTTON_IS_ON, Boolean)</BUTTON_CODE>
<INDICATOR_CODE>(L:A380X_EFIS_#SIDE_SIMVAR_GROUP#_VV_BUTTON_IS_ON) (L:A32NX_TRK_FPA_MODE_ACTIVE) or</INDICATOR_CODE>
<TOOLTIPID>TOGGLE VELOCITY VECTOR ON EFIS</TOOLTIPID>

<NODE_IS_INDICATOR />
Expand Down
Loading