Skip to content

Commit

Permalink
fix(atsu): ATIS auto update return (#8264)
Browse files Browse the repository at this point in the history
Change atis auto update return from ATC Menu to ATIS menu
  • Loading branch information
BravoMike99 authored Oct 22, 2023
1 parent 581edbc commit 8231d7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
1. [FMS] Show ILS ident and frequency on ARRIVAL page - @tracernz (Mike)
1. [EFB/ATSU] Use MSFS METAR data rather than FSX cloud data from FBW API - @tracernz (Mike)
1. [APU] Added xfeed APU fuel capabilities - @Taz5150 (TazX [Z+1]#0405)
1. [ATSU] Fix ATIS Auto Update LSK6L to ATIS page instead of ATC MENU - @BravoMike99 (bruno_pt99)

## 0.10.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ class CDUAtcAtisAutoUpdate {
[""],
[""],
[""],
["\xa0ATC MENU"],
["\xa0ATIS MENU"],
["<RETURN"]
]);

mcdu.leftInputDelay[5] = () => {
return mcdu.getDelaySwitchPage();
};
mcdu.onLeftInput[5] = () => {
CDUAtcMenu.ShowPage(mcdu);
CDUAtcAtisMenu.ShowPage(mcdu);
};

mcdu.rightInputDelay[1] = () => {
Expand Down

0 comments on commit 8231d7c

Please sign in to comment.