From 11f8efd2a9e816b613e7d8d4bbf2b09efe84d732 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 11 Dec 2023 11:46:02 -0500 Subject: [PATCH] Suppress QMAP decoding only if WSJT-X transmitted too much in a Q65-60x submode. --- qmap/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmap/mainwindow.cpp b/qmap/mainwindow.cpp index b81386282..e9e3f80c5 100644 --- a/qmap/mainwindow.cpp +++ b/qmap/mainwindow.cpp @@ -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);