1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 00:35:26 +03:00

Align altitude left in OSD (#1459)

Align altitude left in OSD
This commit is contained in:
Michael Keller 2019-05-25 22:30:08 +12:00 committed by GitHub
commit aa81de133d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -596,7 +596,7 @@ OSD.constants = {
draw_order: 160,
positionable: true,
preview: function (osd_data) {
return FONT.symbol(SYM.ALTITUDE) + ' 399.7' + FONT.symbol(osd_data.unit_mode === 0 ? SYM.FEET : SYM.METRE);
return FONT.symbol(SYM.ALTITUDE) + '399.7' + FONT.symbol(osd_data.unit_mode === 0 ? SYM.FEET : SYM.METRE);
}
},
ONTIME: {