Skip to content

Commit

Permalink
Change numbers to look a bit better
Browse files Browse the repository at this point in the history
  • Loading branch information
MrD-RC committed Jan 4, 2025
1 parent ad94c2f commit 47c747f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabs/osd.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 47c747f

Please sign in to comment.