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
This commit is contained in:
Joe Taylor 2016-10-25 21:15:12 +00:00
parent 31b474883b
commit dcf8521c18
2 changed files with 4 additions and 2 deletions

View File

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

View File

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