mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 19:55:20 -05:00
Prevent the display of lines with negative age values.
This commit is contained in:
parent
cf9233b650
commit
2d906247d7
@ -3474,7 +3474,7 @@ void MainWindow::ARRL_Digi_Display()
|
||||
if(icall.value().txEven) itx=0;
|
||||
int snr=icall.value().snr;
|
||||
int freq=icall.value().audioFreq;
|
||||
if(age>maxAge) {
|
||||
if(age>maxAge or age<0) {
|
||||
icall.remove();
|
||||
} else {
|
||||
bool bReady=false;
|
||||
|
Loading…
Reference in New Issue
Block a user