From 49c86714cd9797dbc66bbe58cc69c8beb62700d7 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 13 Feb 2018 16:03:43 +0000 Subject: [PATCH] Auto-QSY after double-clicking on "CQ nnn" is now restricted to nnn = 010 - 999 Hz. Question: should this feature be allowed at all, in FT8 mode? git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8506 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index e685f5f1e..fb77c0289 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3999,7 +3999,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie if(i1>10) { bool ok; Frequency kHz {message.string ().mid (i1+4,3).toUInt (&ok)}; - if(ok && kHz <= 999) { + if(ok && kHz >= 10 && kHz <= 999) { if (m_config.is_transceiver_online ()) { //QSY Freq for answering CQ nnn setRig (m_freqNominal / 1000000 * 1000000 + 1000 * kHz);