From 956aa2dfc59367ff11a58b4a1bc0de5d6f3ecd32 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 21 Jun 2020 11:27:30 -0400 Subject: [PATCH] Call switch_mode() to repopulate bandComboBox after switching to FST280. --- widgets/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 686259ee4..b3cc32127 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5834,6 +5834,7 @@ void MainWindow::on_actionFST280_triggered() ui->cbAutoSeq->setChecked(true); m_wideGraph->setMode(m_mode); m_wideGraph->setModeTx(m_modeTx); + switch_mode (Modes::FST280); statusChanged(); } @@ -5854,6 +5855,7 @@ void MainWindow::on_actionFST280W_triggered() ui->sbSubmode->setMaximum(3); m_wideGraph->setMode(m_mode); m_wideGraph->setModeTx(m_modeTx); + switch_mode (Modes::FST280W); statusChanged(); }