From dcf8521c18bf207652999849359fbcbd34decb2a Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 25 Oct 2016 21:15:12 +0000 Subject: [PATCH] Minor tweaks to MDB patch and User Guide. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7232 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- doc/user_guide/en/new_features.adoc | 2 +- mainwindow.cpp | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/user_guide/en/new_features.adoc b/doc/user_guide/en/new_features.adoc index 3ec6dd0e3..4faf0ce7b 100644 --- a/doc/user_guide/en/new_features.adoc +++ b/doc/user_guide/en/new_features.adoc @@ -9,7 +9,7 @@ added to _WSJT-X_ since Version 1.6.0: - New fast submodes of JT9E-H -- New Franke-Taylor decoder toreplace the Koetter-Vardy decoder in +- New Franke-Taylor decoder to replace the Koetter-Vardy decoder in JT65. Separate program `kvasd[.exe]` is no longer used. - Improvements to the JT4, JT9, and JT65 decoders diff --git a/mainwindow.cpp b/mainwindow.cpp index 76c648a8a..915b97a0a 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4660,7 +4660,9 @@ void MainWindow::on_tuneButton_clicked (bool checked) if (m_config.pwrBandTuneMemory ()) { m_pwrBandTxMemory[curBand] = ui->outAttenuation->value(); // remember our Tx pwr m_PwrBandSetOK = false; - ui->outAttenuation->setValue(m_pwrBandTuneMemory[curBand].toInt()); // set to Tune pwr + if (m_pwrBandTuneMemory.contains(curBand)) { + ui->outAttenuation->setValue(m_pwrBandTuneMemory[curBand].toInt()); // set to Tune pwr + } m_PwrBandSetOK = true; } }