Fix typo
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
parent
567cc166c9
commit
cd0613a728
1 changed files with 3 additions and 3 deletions
|
@ -992,9 +992,9 @@ var canvas_lowerECAM_crz = {
|
|||
me["Oil2"].setText(sprintf("%2.1f", oil_qt2_actual.getValue()));
|
||||
|
||||
# Fuel Used
|
||||
me["Fused1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue(), 10)));
|
||||
me["Fused2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue(), 10)));
|
||||
me["Fused"].setText(sprintf("%s", (math.round(fuel_used_lbs1.getValue(), 10) + math.round(fuel_used_lbs2.getValue(), 10))));
|
||||
me["FUsed1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue(), 10)));
|
||||
me["FUsed2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue(), 10)));
|
||||
me["FUsed"].setText(sprintf("%s", (math.round(fuel_used_lbs1.getValue(), 10) + math.round(fuel_used_lbs2.getValue(), 10))));
|
||||
|
||||
me.updateBottomStatus();
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue