From e040c926b9a7cd418c23410f7cdae077cb9b68d6 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 11 Dec 2023 18:47:52 +0100 Subject: [PATCH] Always attempt to decode when Continuous Waterfall is enabled. --- qmap/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qmap/mainwindow.cpp b/qmap/mainwindow.cpp index ce8d9c0a6..517692766 100644 --- a/qmap/mainwindow.cpp +++ b/qmap/mainwindow.cpp @@ -800,8 +800,8 @@ void MainWindow::decode() //decode() { //Don't attempt to decode if decoder is already busy, or if we transmitted for 10 s or more. if(m_decoderBusy) return; - if(m_WSJTX_TRperiod==60 and m_nTransmitted>10) return; - if(m_WSJTX_TRperiod==30 and m_nTransmitted>35) return; + if(m_WSJTX_TRperiod==60 and m_nTransmitted>10 and !ui->continuous_waterfall->isChecked()) return; + if(m_WSJTX_TRperiod==30 and m_nTransmitted>35 and !ui->continuous_waterfall->isChecked()) return; QString fname=" "; ui->DecodeButton->setStyleSheet(m_pbdecoding_style1);