From 327a5907b9d856caf2239ca2476605f1c08ea366 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 15 Jun 2015 22:49:31 +0000 Subject: [PATCH] Ensure that he .WAV file read flag gets cleared when returning to monitoring git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5618 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 8c13a611e..0e51d9a6c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -977,8 +977,6 @@ void MainWindow::on_monitorButton_clicked (bool checked) if (checked && !prior) { - m_diskData = false; // no longer reading WAV files - Frequency operating_frequency {m_dialFreq}; if (m_config.monitor_last_used ()) { @@ -1006,6 +1004,7 @@ void MainWindow::monitor (bool state) { ui->monitorButton->setChecked (state); if (state) { + m_diskData = false; // no longer reading WAV files if (!m_monitoring) Q_EMIT resumeAudioInputStream (); } else { Q_EMIT suspendAudioInputStream (); @@ -1724,12 +1723,12 @@ void MainWindow::readFromStdout() //readFromStdout m_QSOText=decodedtext; } - postDecode (true, decodedtext.string ()); + postDecode (true, decodedtext.string ()); - // find and extract any report for myCall - bool stdMsg = decodedtext.report(m_baseCall - , Radio::base_callsign (ui->dxCallEntry-> text ().toUpper ().trimmed ()) - , /*mod*/m_rptRcvd); + // find and extract any report for myCall + bool stdMsg = decodedtext.report(m_baseCall + , Radio::base_callsign (ui->dxCallEntry-> text ().toUpper ().trimmed ()) + , /*mod*/m_rptRcvd); // extract details and send to PSKreporter int nsec=QDateTime::currentMSecsSinceEpoch()/1000-m_secBandChanged;