mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 19:55:20 -05:00
Allow MAP65 "Best-fit Delta phi" solution to be displayed to the user.
This commit is contained in:
parent
69f9ec89d4
commit
d99c6adf4d
@ -1410,7 +1410,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
m=3;
|
m=3;
|
||||||
#endif
|
#endif
|
||||||
if(n>=30) ui->decodedTextBrowser->append(t.mid(1,n-m));
|
if(n>=30 or t.indexOf("Best-fit")>=0) ui->decodedTextBrowser->append(t.mid(1,n-m));
|
||||||
n=ui->decodedTextBrowser->verticalScrollBar()->maximum();
|
n=ui->decodedTextBrowser->verticalScrollBar()->maximum();
|
||||||
ui->decodedTextBrowser->verticalScrollBar()->setValue(n);
|
ui->decodedTextBrowser->verticalScrollBar()->setValue(n);
|
||||||
m_messagesText="";
|
m_messagesText="";
|
||||||
@ -1439,7 +1439,6 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
int n=t.size();
|
int n=t.size();
|
||||||
qDebug() << t.mid(1,n-3).trimmed();
|
qDebug() << t.mid(1,n-3).trimmed();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user