Display points if in FT4 or FT8 and ActiveStations is visible.

This commit is contained in:
Joe Taylor 2022-03-22 14:35:42 -04:00
parent 190dca5501
commit 4957face2f
1 changed files with 2 additions and 2 deletions

View File

@ -3520,8 +3520,8 @@ void MainWindow::activeWorked(QString call, QString band)
void MainWindow::readFromStdout() //readFromStdout void MainWindow::readFromStdout() //readFromStdout
{ {
QFile f(m_appDir + "/DisplayPoints"); bool bDisplayPoints = (m_mode=="FT4" or m_mode=="FT8") and
bool bDisplayPoints = f.exists() or m_config.special_op_id()==SpecOp::ARRL_DIGI; (m_config.special_op_id()==SpecOp::ARRL_DIGI or m_ActiveStationsWidget->isVisible());
while(proc_jt9.canReadLine()) { while(proc_jt9.canReadLine()) {
auto line_read = proc_jt9.readLine (); auto line_read = proc_jt9.readLine ();
if (auto p = std::strpbrk (line_read.constData (), "\n\r")) { if (auto p = std::strpbrk (line_read.constData (), "\n\r")) {