From 40c23919edf77a31cb77fa1363748c4ff6bbdd69 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Tue, 28 Jan 2020 20:26:34 -0800 Subject: [PATCH] Add space between colon and frequency output --- ubitx_ui.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ubitx_ui.cpp b/ubitx_ui.cpp index 1427402..c9df34d 100644 --- a/ubitx_ui.cpp +++ b/ubitx_ui.cpp @@ -226,11 +226,12 @@ void displayVFO(Vfo_e vfo){ } } c[1] = ':'; + c[2] = ' '; if (VFO_A == vfo){ getButton(BUTTON_VFOA, &button); - formatFreq(globalSettings.vfoA.frequency, c+2, sizeof(c)-2, 10); + formatFreq(globalSettings.vfoA.frequency, c+3, sizeof(c)-3, 10); if (VFO_A == globalSettings.activeVfo){ displayColor = COLOR_ACTIVE_VFO_TEXT; @@ -245,7 +246,7 @@ void displayVFO(Vfo_e vfo){ if (VFO_B == vfo){ getButton(BUTTON_VFOB, &button); - formatFreq(globalSettings.vfoB.frequency, c+2, sizeof(c)-2, 10); + formatFreq(globalSettings.vfoB.frequency, c+3, sizeof(c)-3, 10); if (VFO_B == globalSettings.activeVfo){ displayColor = COLOR_ACTIVE_VFO_TEXT;