1
0
Fork 0
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
fly 2019-11-30 16:22:26 +00:00
parent 567cc166c9
commit cd0613a728

View file

@ -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();
},