From 37b1b7aa6fec424d7115bc91c13648b0bb642293 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 21 Jun 2020 10:34:24 -0400 Subject: [PATCH] More of "Single Decode". Also, update m_mode in Wide Graph when switching to FST280. --- widgets/mainwindow.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 0d996fd6b..686259ee4 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5825,13 +5825,15 @@ void MainWindow::on_actionFST280_triggered() WSPR_config(false); bool bVHF=m_config.enable_VHF_features(); // 012345678901234567890123456789012 - displayWidgets(nWidgets("111011000100111100010000000100000")); + displayWidgets(nWidgets("111111000100111100010000000100000")); setup_status_bar (bVHF); m_TRperiod = ui->sbTR->value (); ui->sbTR->setMinimum(15); ui->sbTR->setMaximum(300); on_sbTR_valueChanged(ui->sbTR->value()); ui->cbAutoSeq->setChecked(true); + m_wideGraph->setMode(m_mode); + m_wideGraph->setModeTx(m_modeTx); statusChanged(); } @@ -5850,6 +5852,8 @@ void MainWindow::on_actionFST280W_triggered() ui->sbTR->setMinimum(120); ui->sbTR->setMaximum(300); ui->sbSubmode->setMaximum(3); + m_wideGraph->setMode(m_mode); + m_wideGraph->setModeTx(m_modeTx); statusChanged(); }