Suppress QMAP decoding only if WSJT-X transmitted too much in a Q65-60x submode.

This commit is contained in:
Joe Taylor 2023-12-11 11:46:02 -05:00
parent e2ef2c7dbb
commit 11f8efd2a9

View File

@ -800,7 +800,7 @@ void MainWindow::freezeDecode(int n) //freezeDecode()
void MainWindow::decode() //decode()
{
if(m_decoderBusy) return; //Don't attempt decode if decoder already busy
if(m_nTx30>5 or m_nTx60>10) return; //Don't decode if WSJT-X transmitted too much
if(m_nTx60>10) return; //Don't decode if WSJT-X transmitted too much in 60 s mode
QString fname=" ";
ui->DecodeButton->setStyleSheet(m_pbdecoding_style1);