mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-18 21:58:34 -04:00
Merge branch 'feat-fst280' of bitbucket.org:k1jt/wsjtx into feat-fst280
This commit is contained in:
@@ -3379,9 +3379,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
int n0=n2/1000;
|
||||
int n1=n2%1000;
|
||||
if(m_mode=="Q65") {
|
||||
QString t;
|
||||
t.sprintf("%d %d",n0,n1);
|
||||
ndecodes_label.setText(t);
|
||||
ndecodes_label.setText(QString {"%1 %2"}.arg (n0).arg (n1));
|
||||
} else {
|
||||
if(m_nDecodes==0) ndecodes_label.setText("0");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user