From e9600d9a08ab30095e0834dc5eb9b4f2c6aed3a9 Mon Sep 17 00:00:00 2001 From: Alexander Malishev Date: Wed, 4 Jul 2018 02:53:48 +0400 Subject: [PATCH] AP_OSD: reduce width of the vspeed item --- libraries/AP_OSD/AP_OSD_Screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_OSD/AP_OSD_Screen.cpp b/libraries/AP_OSD/AP_OSD_Screen.cpp index dacf50ae96..1e53db05dc 100644 --- a/libraries/AP_OSD/AP_OSD_Screen.cpp +++ b/libraries/AP_OSD/AP_OSD_Screen.cpp @@ -423,7 +423,7 @@ void AP_OSD_Screen::draw_vspeed(uint8_t x, uint8_t y) } else { sym = SYM_DOWN_DOWN; } - backend->write(x, y, false, "%c%3.0f%c", sym, vspd, SYM_MS); + backend->write(x, y, false, "%c%2.0f%c", sym, vspd, SYM_MS); } #define DRAW_SETTING(n) if (n.enabled) draw_ ## n(n.xpos, n.ypos)