Skip to content

Commit

Permalink
Show zero frequency anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
ka9q committed Apr 5, 2024
1 parent 2052a57 commit 2f36f53
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions monitor.c
Expand Up @@ -1184,8 +1184,7 @@ static void *display(void *arg){
mvprintw(y++,x,"%12s","Freq");
for(int session = first_session; session < Nsessions_copy; session++,y++){
struct session *sp = Sessions_copy[session];
if(sp->chan.tune.freq != 0)
mvprintw(y,x,"%'12.0lf",sp->chan.tune.freq);
mvprintw(y,x,"%'12.0lf",sp->chan.tune.freq);
}
x += 13;
y = row_save;
Expand Down

0 comments on commit 2f36f53

Please sign in to comment.