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
This commit is contained in:
Joe Taylor 2018-02-13 16:03:43 +00:00
parent ebeab718d7
commit 49c86714cd
1 changed files with 1 additions and 1 deletions

View File

@ -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);