Fix typo in doc. Fix label on/off in WSPR_config.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7865 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2017-07-13 12:57:44 +00:00
parent f540df3629
commit 1cdfabc4ee
2 changed files with 4 additions and 4 deletions

View File

@ -331,6 +331,6 @@ and your QSO partner ± 200 Hz.
|JT9F |K=32, r=1/2|(206,72)| 8| 9-FSK| 50.0 | 450 | 0.19| 1.700 |JT9F |K=32, r=1/2|(206,72)| 8| 9-FSK| 50.0 | 450 | 0.19| 1.700
|JT9G |K=32, r=1/2|(206,72)| 8| 9-FSK|100.0 | 900 | 0.19| 0.850 |JT9G |K=32, r=1/2|(206,72)| 8| 9-FSK|100.0 | 900 | 0.19| 0.850
|JT9H |K=32, r=1/2|(206,72)| 8| 9-FSK|200.0 | 1800 | 0.19| 0.425 |JT9H |K=32, r=1/2|(206,72)| 8| 9-FSK|200.0 | 1800 | 0.19| 0.425
|MSK144 |LDPC |(128,72)| 2| OQPSK| 2000 | 2400 | 0.11| 0.072 |MSK144 |LDPC |(128,80)| 2| OQPSK| 2000 | 2400 | 0.11| 0.072
|MSK144 Sh|LDPC |(32,16) | 2| OQPSK| 2000 | 2400 | 0.20| 0.020 |MSK144 Sh|LDPC |(32,16) | 2| OQPSK| 2000 | 2400 | 0.20| 0.020
|===================================================================== |=====================================================================

View File

@ -4812,13 +4812,13 @@ void MainWindow::switch_mode (Mode mode)
void MainWindow::WSPR_config(bool b) void MainWindow::WSPR_config(bool b)
{ {
ui->decodedTextBrowser2->setVisible(!b); ui->decodedTextBrowser2->setVisible(!b);
ui->decodedTextLabel2->setVisible(!b); ui->decodedTextLabel2->setVisible(!b and ui->cbMenus->isChecked());
ui->controls_stack_widget->setCurrentIndex (b && m_mode != "Echo" ? 1 : 0); ui->controls_stack_widget->setCurrentIndex (b && m_mode != "Echo" ? 1 : 0);
ui->QSO_controls_widget->setVisible (!b); ui->QSO_controls_widget->setVisible (!b);
ui->DX_controls_widget->setVisible (!b); ui->DX_controls_widget->setVisible (!b);
ui->WSPR_controls_widget->setVisible (b); ui->WSPR_controls_widget->setVisible (b);
ui->label_6->setVisible(!b); ui->label_6->setVisible(!b and ui->cbMenus->isChecked());
ui->label_7->setVisible(!b); ui->label_7->setVisible(!b and ui->cbMenus->isChecked());
ui->logQSOButton->setVisible(!b); ui->logQSOButton->setVisible(!b);
ui->DecodeButton->setEnabled(!b); ui->DecodeButton->setEnabled(!b);
if(b and (m_mode!="Echo")) { if(b and (m_mode!="Echo")) {