mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-10 06:22:15 -05:00
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:
parent
ebeab718d7
commit
49c86714cd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user