Skip to content

Commit

Permalink
fix(FCU): Fix Mach Decimal (flybywiresim#8421)
Browse files Browse the repository at this point in the history
* Update A320_Neo_FCU.js

* Add changelog
  • Loading branch information
jbud authored Jan 17, 2024
1 parent 91334d9 commit 0024437
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
1. [GSX/EFB] FBW Chocks & Cones are usable with GSX Fuel/Payload Sync and react to GSX Pushback - @Fragtality (Fragtality)
1. [GSX] Fixed GSX pin not actually disabling NWS - @Maximilian-Reuter (\_Chaoz_)
1. [EFB/FBW] Added option for TOGA off axis for devices where the TOGA button is built into the throttle - @ImmortalCake
1. [FCU] Fixed SPD display in MACH mode to include decimal - @budzique (Joe Jackson)

## 0.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,11 @@ class A320_Neo_FCU_Speed extends A320_Neo_FCU_Component {
}
this.textValueContent = value;
} else {
this.textValueContent = "---";
if (_machActive) {
this.textValueContent = "-.--";
} else {
this.textValueContent = "---";
}
}
}
this.setElementVisibility(this.illuminator, this.isManaged);
Expand Down

0 comments on commit 0024437

Please sign in to comment.