diff --git a/doc/user_guide/en/controls-functions-status-bar.adoc b/doc/user_guide/en/controls-functions-status-bar.adoc index 1a6c2284a..f7c759b6a 100644 --- a/doc/user_guide/en/controls-functions-status-bar.adoc +++ b/doc/user_guide/en/controls-functions-status-bar.adoc @@ -7,18 +7,17 @@ information about operating conditions. image::status-bar-a.png[align="left",alt="Status Bar"] Labels on the *Status Bar* display such information as the program's -current operating state, configuration name, operating mode, the -content of your most recent transmitted message, and whether -*Double-click on call sets Tx enable* has been selected on the -*Settings | General* tab. The first label (operating state) can be -Receiving, Tx (for Transmitting), Tune, or the name of file opened -from the *File* menu; this label is highlighted in green for -Receiving, yellow for Tx, red for Tune, and light blue for a file -name. When transmitting, the Tx message is displayed exactly as it -will be decoded by receiving stations. The second label (as shown -above) will be absent if you are using the *Default* setting on the -*Configurations* menu. A progress bar shows the elapsed fraction of a -Tx or Rx sequence. Finally, if the Watchdog timer was enabled on the -*settings | General* tab, a label in the lower right-hand corner -displays the number of minutes remaining before timeout. +current operating state, configuration name, operating mode, and the +content of your most recent transmitted message. The first label +(operating state) can be Receiving, Tx (for Transmitting), Tune, or +the name of file opened from the *File* menu; this label is +highlighted in green for Receiving, yellow for Tx, red for Tune, and +light blue for a file name. When transmitting, the Tx message is +displayed exactly as it will be decoded by receiving stations. The +second label (as shown above) will be absent if you are using the +*Default* setting on the *Configurations* menu. A progress bar shows +the elapsed fraction of a Tx or Rx sequence. Finally, if the Watchdog +timer was enabled on the *settings | General* tab, a label in the +lower right-hand corner displays the number of minutes remaining +before timeout. diff --git a/mainwindow.cpp b/mainwindow.cpp index 301692501..6c5432c04 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1417,6 +1417,7 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog bool vhf {m_config.enable_VHF_features()}; m_wideGraph->setVHF(vhf); if (!vhf) ui->sbSubmode->setValue (0); + setup_status_bar (vhf); bool b = vhf && (m_mode=="JT4" or m_mode=="JT65" or m_mode=="ISCAT" or m_mode=="JT9" or m_mode=="MSK144"); @@ -1446,6 +1447,12 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog } update_watchdog_label (); if(!m_splitMode) ui->cbCQTx->setChecked(false); + if(!m_config.enable_VHF_features()) { + ui->actionInclude_averaging->setEnabled(false); + ui->actionInclude_correlation->setEnabled(false); + ui->actionInclude_averaging->setChecked(false); + ui->actionInclude_correlation->setChecked(false); + } } void MainWindow::on_monitorButton_clicked (bool checked)