Merge branch 'feat-fst280' of bitbucket.org:k1jt/wsjtx into feat-fst280

This commit is contained in:
Joe Taylor
2021-01-28 07:43:14 -05:00
11 changed files with 594 additions and 511 deletions
+1 -3
View File
@@ -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");
}