mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Insert asterisk only if age==0.
This commit is contained in:
parent
07ab7de018
commit
aceac2ccb5
@ -3455,7 +3455,7 @@ void MainWindow::ARRL_Digi_Display()
|
||||
if(x>1.0) x=0;
|
||||
pts[i-1]=points - x;
|
||||
QString t0=" ";
|
||||
if(m_recentCall.value(deCall).ready2call) t0="* ";
|
||||
if(age==0 and m_recentCall.value(deCall).ready2call) t0="* ";
|
||||
QString t1;
|
||||
t1 = t1.asprintf(" %3d %+2.2d %4d %1d %2d %4d",az,snr,freq,itx,age,points);
|
||||
t1 = t0 + (deCall + " ").left(6) + " " + m_activeCall[deCall].grid4 + t1 + " " + bands;
|
||||
|
Loading…
Reference in New Issue
Block a user