Skip to content

Commit

Permalink
Merge pull request #15 from prokrypt/freqdisp
Browse files Browse the repository at this point in the history
Freqdisp
  • Loading branch information
prokrypt authored Jul 26, 2024
2 parents 5882d95 + a9b87e4 commit 48bcbac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ void UI_DisplayMain(void)
{
case MDF_FREQUENCY: // show the channel frequency
sprintf(String, "%3u.%05u", frequency / 100000, frequency % 100000);
#ifdef ENABLE_BIG_FREQ
/*#ifdef ENABLE_BIG_FREQ
if(frequency < _1GHz_in_KHz) {
// show the remaining 2 small frequency digits
UI_PrintStringSmallNormal(String + 7, 113, 0, line + 1);
Expand All @@ -945,7 +945,7 @@ void UI_DisplayMain(void)
UI_DisplayFrequency(String, 32, line, false);
}
else
#endif
#endif*/
{
// show the frequency in the main font
UI_PrintString(String, 32, 0, line, 8);
Expand Down

0 comments on commit 48bcbac

Please sign in to comment.