1
0
Fork 0

Fix left pushbuttons

This commit is contained in:
legoboyvdlp R 2020-01-11 14:48:18 +00:00
parent ec68189ce1
commit f57fe670fe
2 changed files with 4 additions and 5 deletions

View file

@ -91,9 +91,9 @@ var arrivalPage = {
me.updateSTARs();
}
me.updateActiveRunway();
me.updateActiveSTARs();
me.updateActiveTransitions();
#me.updateActiveRunway();
#me.updateActiveSTARs();
#me.updateActiveTransitions();
},
_clearPage: func() {
me.L1 = [nil, nil, "ack"];

View file

@ -220,7 +220,6 @@ var fplnPage = { # this one is only created once, and then updated - remember th
me.outputList = [];
for (var i = 0; i + me.scroll < size(me.planList); i += 1) {
append(me.outputList, me.planList[i + me.scroll] );
if (size(me.outputList) == 5) { break; }
}
if (size(me.outputList) >= 1) {
me.L1 = me.outputList[0].updateLeftText();
@ -322,7 +321,7 @@ var fplnPage = { # this one is only created once, and then updated - remember th
setprop("/MCDU[" ~ me.computer ~ "]/scratchpad", "");
}
} else {
me.outputList[index - 1 + me.scroll].pushButtonLeft();
me.outputList[index - 1].pushButtonLeft();
}
} else {
notAllowed(me.computer);