mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-12-24 11:40:31 -05:00
Previous commit message should have mentioned number of decodes is now displayed on status bar.
This commit is contained in:
parent
8e7685ea36
commit
afe0262ec9
@ -3199,8 +3199,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
bool bAvgMsg=false;
|
bool bAvgMsg=false;
|
||||||
int navg=0;
|
int navg=0;
|
||||||
if(line_read.indexOf("<DecodeFinished>") >= 0) {
|
if(line_read.indexOf("<DecodeFinished>") >= 0) {
|
||||||
// qDebug() << "bb" << QDateTime::currentDateTimeUtc().toString("hh:mm:ss.zzz") << line_read;
|
// qDebug() << "bb" << QDateTime::currentDateTimeUtc().toString("hh:mm:ss.zzz") << line_read;
|
||||||
m_ndecodes=0;
|
m_nDecodes=0;
|
||||||
if(m_mode=="QRA64") m_wideGraph->drawRed(0,0);
|
if(m_mode=="QRA64") m_wideGraph->drawRed(0,0);
|
||||||
m_bDecoded = line_read.mid(20).trimmed().toInt() > 0;
|
m_bDecoded = line_read.mid(20).trimmed().toInt() > 0;
|
||||||
auto tnow = QDateTime::currentDateTimeUtc ();
|
auto tnow = QDateTime::currentDateTimeUtc ();
|
||||||
@ -3220,8 +3220,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
m_ndecodes+=1;
|
m_nDecodes+=1;
|
||||||
ndecodes_label.setText(QString::number(m_ndecodes));
|
ndecodes_label.setText(QString::number(m_nDecodes));
|
||||||
if(m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64") {
|
if(m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64") {
|
||||||
int n=line_read.indexOf("f");
|
int n=line_read.indexOf("f");
|
||||||
if(n<0) n=line_read.indexOf("d");
|
if(n<0) n=line_read.indexOf("d");
|
||||||
|
@ -469,7 +469,7 @@ private:
|
|||||||
qint32 m_kin0=0;
|
qint32 m_kin0=0;
|
||||||
qint32 m_earlyDecode=41;
|
qint32 m_earlyDecode=41;
|
||||||
qint32 m_earlyDecode2=47;
|
qint32 m_earlyDecode2=47;
|
||||||
qint32 m_ndecodes=0;
|
qint32 m_nDecodes=0;
|
||||||
|
|
||||||
bool m_btxok; //True if OK to transmit
|
bool m_btxok; //True if OK to transmit
|
||||||
bool m_diskData;
|
bool m_diskData;
|
||||||
|
Loading…
Reference in New Issue
Block a user