Skip to content

Commit

Permalink
chore: set acars page inop
Browse files Browse the repository at this point in the history
  • Loading branch information
Revyn112 committed Nov 16, 2024
1 parent 33f5810 commit 926826c
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ class CDU_ACARS_MenuPage {
[new Column(1, "ACARS FUNCTION 1/2")],
[
"",
new Column(23, "UPLINK", Column.right),
new Column(23, "UPLINK", Column.right, Column.inop),
],
[
new Column(7, "F-PLN INIT"),
new Column(23, requestEnable ? "REQ*" : "REQ ", Column.right)
new Column(7, "F-PLN INIT", Column.inop),
new Column(23, requestEnable ? "REQ*" : "REQ ", Column.right, Column.inop)
],
[""],
[
Expand All @@ -38,20 +38,20 @@ class CDU_ACARS_MenuPage {
],
[""],
[
new Column(7, "WIND DATA", Column.small),
new Column(23, mcdu.windRequestEnabled ? "REQ*" : "REQ ", Column.right)
new Column(7, "WIND DATA", Column.small, Column.inop),
new Column(23, mcdu.windRequestEnabled ? "REQ*" : "REQ ", Column.right, Column.inop)
],
[""],
[""],
[""],
[""],
[
"",
new Column(23, "PRINT", Column.right)
new Column(23, "PRINT", Column.right, Column.inop)
],
[
new Column(0, "<RETURN"),
new Column(23, "FUNCTION>", Column.right)
new Column(0, "<RETURN", Column.inop),
new Column(23, "FUNCTION>", Column.right, Column.inop)
],
]));
};
Expand All @@ -75,16 +75,16 @@ class CDU_ACARS_MenuPage {
[new Column(1, "ACARS FUNCTION 2/2")],
[
"",
new Column(23, "REPORT", Column.right),
new Column(23, "REPORT", Column.right, Column.inop),
],
[
new Column(5, "F-PLN RPT"),
new Column(23, "SEND*", Column.right)
new Column(5, "F-PLN RPT", Column.inop),
new Column(23, "SEND*", Column.right, Column.inop)
],
[""],
[
new Column(5, "POSITION RPT"),
new Column(23, "SEND*", Column.right)
new Column(5, "POSITION RPT", Column.inop),
new Column(23, "SEND*", Column.right, Column.inop)
],
[""],
[""],
Expand All @@ -94,11 +94,11 @@ class CDU_ACARS_MenuPage {
[""],
[
"",
new Column(23, "PRINT", Column.right)
new Column(23, "PRINT", Column.right, Column.inop)
],
[
new Column(0, "<RETURN"),
new Column(23, "FUNCTION>", Column.right)
new Column(0, "<RETURN", Column.inop),
new Column(23, "FUNCTION>", Column.right, Column.inop)
],
]));
};
Expand Down

0 comments on commit 926826c

Please sign in to comment.