mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 19:27:23 -05:00
Force a fix frequency width when possible
This commit is contained in:
parent
6ddd46a853
commit
2d48b58461
@ -230,7 +230,7 @@ void displayVFO(Vfo_e vfo){
|
||||
|
||||
if (VFO_A == vfo){
|
||||
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){
|
||||
displayColor = COLOR_ACTIVE_VFO_TEXT;
|
||||
@ -245,7 +245,7 @@ void displayVFO(Vfo_e vfo){
|
||||
|
||||
if (VFO_B == vfo){
|
||||
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){
|
||||
displayColor = COLOR_ACTIVE_VFO_TEXT;
|
||||
|
Loading…
Reference in New Issue
Block a user