mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-29 20:22:28 -04:00
Display all current calls with grids. Add asterisk for those ready to call.
This commit is contained in:
parent
6ca1b14477
commit
653ea56a77
@ -3445,7 +3445,6 @@ void MainWindow::ARRL_Digi_Display()
|
||||
if(age>maxAge) {
|
||||
icall.remove();
|
||||
} else {
|
||||
if(m_recentCall.value(deCall).ready2call) {
|
||||
i++;
|
||||
int az=m_activeCall[deCall].az;
|
||||
deGrid=m_activeCall[deCall].grid4;
|
||||
@ -3455,13 +3454,14 @@ void MainWindow::ARRL_Digi_Display()
|
||||
float x=float(age)/(maxAge+1);
|
||||
if(x>1.0) x=0;
|
||||
pts[i-1]=points - x;
|
||||
QString t0=" ";
|
||||
if(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 = (deCall + " ").left(6) + " " + m_activeCall[deCall].grid4 + t1 + " " + bands;
|
||||
t1 = t0 + (deCall + " ").left(6) + " " + m_activeCall[deCall].grid4 + t1 + " " + bands;
|
||||
list.append(t1);
|
||||
}
|
||||
}
|
||||
}
|
||||
if(i==0) return;
|
||||
int jz=i;
|
||||
m_ActiveStationsWidget->setClickOK(false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user