mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 19:27:23 -05:00
Add space between colon and frequency output
This commit is contained in:
parent
2d48b58461
commit
40c23919ed
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user