From 2637fdfec63b09139c09b8d04cd9d1ebaa636457 Mon Sep 17 00:00:00 2001 From: Miguel Angel Mulero Martinez Date: Thu, 8 Jun 2017 10:36:29 +0200 Subject: [PATCH] Adjust OSD element GPS LAT and LON preview --- tabs/osd.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tabs/osd.js b/tabs/osd.js index d6efd3ff..b037c617 100755 --- a/tabs/osd.js +++ b/tabs/osd.js @@ -26,6 +26,8 @@ SYM.PB_EMPTY = 0x8D; SYM.PB_END = 0x8E; SYM.PB_CLOSE = 0x8F; SYM.BATTERY = 0x96; +SYM.ARROW_SOUTH=0x60; +SYM.ARROW_EAST=0x64; var FONT = FONT || {}; @@ -373,13 +375,13 @@ OSD.constants = { name: 'GPS_LON', default_position: -1, positionable: true, - preview: '-00.0' + preview: FONT.symbol(SYM.ARROW_SOUTH) + '00.00' }, GPS_LAT: { name: 'GPS_LAT', default_position: -1, positionable: true, - preview: '-00.0' + preview: FONT.symbol(SYM.ARROW_EAST) + '00.00' }, DEBUG: { name: 'DEBUG',