1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

add space for fourth digit

This commit is contained in:
Alexander van Saase 2021-06-10 12:58:44 +02:00
parent ffce2c9a57
commit f538ee4e60

View file

@ -921,9 +921,9 @@ OSD.constants = {
} else {
if (OSD.data.preferences.units === 0) {
// imperial
return '118' + FONT.symbol(SYM.ALT_FT);
return ' 118' + FONT.symbol(SYM.ALT_FT);
}
return '399' + FONT.symbol(SYM.ALT_M);
return ' 399' + FONT.symbol(SYM.ALT_M);
}
}
},