Force a fix frequency width when possible

This commit is contained in:
Reed Nightingale 2020-01-28 02:31:14 -08:00
parent 6ddd46a853
commit 2d48b58461

View File

@ -230,7 +230,7 @@ void displayVFO(Vfo_e vfo){
if (VFO_A == vfo){ if (VFO_A == vfo){
getButton(BUTTON_VFOA, &button); getButton(BUTTON_VFOA, &button);
formatFreq(globalSettings.vfoA.frequency, c+2, sizeof(c)-2); formatFreq(globalSettings.vfoA.frequency, c+2, sizeof(c)-2, 10);
if (VFO_A == globalSettings.activeVfo){ if (VFO_A == globalSettings.activeVfo){
displayColor = COLOR_ACTIVE_VFO_TEXT; displayColor = COLOR_ACTIVE_VFO_TEXT;
@ -245,7 +245,7 @@ void displayVFO(Vfo_e vfo){
if (VFO_B == vfo){ if (VFO_B == vfo){
getButton(BUTTON_VFOB, &button); getButton(BUTTON_VFOB, &button);
formatFreq(globalSettings.vfoB.frequency, c+2, sizeof(c)-2); formatFreq(globalSettings.vfoB.frequency, c+2, sizeof(c)-2, 10);
if (VFO_B == globalSettings.activeVfo){ if (VFO_B == globalSettings.activeVfo){
displayColor = COLOR_ACTIVE_VFO_TEXT; displayColor = COLOR_ACTIVE_VFO_TEXT;