Fix C3S on PERF pages; correct brackets for new font and improve layout of PERF TO / PERF APPR pages per references
This commit is contained in:
parent
fd4ad2bde8
commit
7c2c7f3ffc
1 changed files with 13 additions and 11 deletions
|
@ -4036,6 +4036,7 @@ var canvas_MCDU_base = {
|
|||
me.fontSizeLeft(normal, normal, normal, normal, 0, normal);
|
||||
me.fontSizeRight(normal, small, 0, 0, 0, normal);
|
||||
me.fontSizeCenter(small, small, small, 0, 0, 0);
|
||||
me.fontSizeCenterS(small, small, small, small, small, small);
|
||||
|
||||
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
|
||||
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
|
||||
|
@ -4052,7 +4053,7 @@ var canvas_MCDU_base = {
|
|||
}
|
||||
|
||||
me["Simple_L4"].setText(sprintf("%3.0f", fmgc.FMGCInternal.transAlt));
|
||||
me["Simple_L5"].setText(sprintf("%3.0f", clbReducFt.getValue()) ~ sprintf("/%3.0f", reducFt.getValue()));
|
||||
me["Simple_L5"].setText(" " ~ sprintf("%3.0f", clbReducFt.getValue()) ~ sprintf("/%3.0f", reducFt.getValue()));
|
||||
me["Simple_L6"].setText(" TO DATA");
|
||||
me["Simple_L1S"].setText(" V1");
|
||||
me["Simple_L2S"].setText(" VR");
|
||||
|
@ -4060,7 +4061,7 @@ var canvas_MCDU_base = {
|
|||
me["Simple_L4S"].setText("TRANS ALT");
|
||||
me["Simple_L5S"].setText("THR RED/ACC");
|
||||
me["Simple_L6S"].setText(" UPLINK");
|
||||
me["Simple_R2"].setText("[ ] ");
|
||||
me["Simple_R2"].setText("[M][ ] ");
|
||||
me["Simple_R5"].setText(sprintf("%3.0f", engOutAcc.getValue()));
|
||||
me["Simple_R6"].setText("PHASE ");
|
||||
me["Simple_R1S"].setText("RWY ");
|
||||
|
@ -4151,10 +4152,10 @@ var canvas_MCDU_base = {
|
|||
}
|
||||
if (flexSet.getValue() == 1) {
|
||||
me["Simple_R4"].setFontSize(normal);
|
||||
me["Simple_R4"].setText(sprintf("%3.0f", flex.getValue()));
|
||||
me["Simple_R4"].setText(sprintf("%3.0f°", flex.getValue()));
|
||||
} else {
|
||||
me["Simple_R4"].setFontSize(small);
|
||||
me["Simple_R4"].setText("[ ]");
|
||||
me["Simple_R4"].setText("[ ]°");
|
||||
}
|
||||
if (engOutAccSet.getValue() == 1) {
|
||||
me["Simple_R5"].setFontSize(normal);
|
||||
|
@ -4631,6 +4632,7 @@ var canvas_MCDU_base = {
|
|||
me.fontSizeLeft(small, small, small, small, small, normal);
|
||||
me.fontSizeRight(normal, small, small, small, normal, normal);
|
||||
me.fontSizeCenter(small, small, small, 0, small, 0);
|
||||
me.fontSizeCenterS(small, small, small, small, small, small);
|
||||
|
||||
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
|
||||
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
|
||||
|
@ -4666,7 +4668,7 @@ var canvas_MCDU_base = {
|
|||
if (dest_temp.getValue() != -999) {
|
||||
me["Simple_L2"].setText(sprintf("%3.0f°", dest_temp.getValue()));
|
||||
} else {
|
||||
me["Simple_L2"].setText("---°");
|
||||
me["Simple_L2"].setText("[ ]°");
|
||||
}
|
||||
|
||||
me["Simple_L3S"].setText("MAG WIND");
|
||||
|
@ -4680,7 +4682,7 @@ var canvas_MCDU_base = {
|
|||
var result = myDESWIND[math.abs(i-1)].returnGRND();
|
||||
me["Simple_L3"].setText(sprintf("%03.0f°", result[0]) ~ sprintf("/%.0f", result[1]));
|
||||
} else {
|
||||
me["Simple_L3"].setText("---°/---");
|
||||
me["Simple_L3"].setText("[ ]°/[ ]");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue