1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-23 16:25:19 +03:00

Change numbers to look a bit better

This commit is contained in:
Mr D - RC 2025-01-04 16:54:02 +00:00
parent ad94c2fbe7
commit 47c747f14a

View file

@ -498,11 +498,11 @@ function osdDecimalsTripDistancePreview() {
}
function osdDecimalsDistancePreview(prependedSymbol) {
var s = '11.5';
var s = '24.9';
if (Settings.getInputValue('osd_decimals_distance') == 4) {
s+= '3';
} if (Settings.getInputValue('osd_decimals_distance') == 5) {
s = '1' + s + '7';
s = '1' + s + '6';
}
s = FONT.embed_dot(s);