mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
For non-FT8 modes, reset m_nDecodes to 0 after receiving <DecodeFinished>.
This commit is contained in:
parent
8f7221825f
commit
aff8229fef
@ -3123,7 +3123,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
int navg=0;
|
||||
if(line_read.indexOf("<DecodeFinished>") >= 0) {
|
||||
// qDebug() << "bb" << QDateTime::currentDateTimeUtc().toString("hh:mm:ss.zzz") << line_read;
|
||||
if (dec_data.params.nzhsym==50) m_nDecodes=0;
|
||||
if(m_mode!="FT8" or dec_data.params.nzhsym==50) m_nDecodes=0;
|
||||
if(m_mode=="QRA64") m_wideGraph->drawRed(0,0);
|
||||
m_bDecoded = line_read.mid(20).trimmed().toInt() > 0;
|
||||
auto tnow = QDateTime::currentDateTimeUtc ();
|
||||
|
Loading…
Reference in New Issue
Block a user