From d08a056c8ec7fc6194e1450f94598168e6a264f7 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 22 Mar 2023 12:05:04 +0100 Subject: [PATCH] Call FoxReset(); only when in Fox mode because it erases the decodedTextBrowser. --- widgets/mainwindow.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 0848c13da..beeb4b914 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7837,9 +7837,8 @@ void MainWindow::band_changed (Frequency f) } setRig (f); setXIT (ui->TxFreqSpinBox->value ()); - - // when changing bands, don't preserve the Fox queues - FoxReset("BandChange"); + m_specOp=m_config.special_op_id(); + if (m_specOp==SpecOp::FOX) FoxReset("BandChange"); // when changing bands, don't preserve the Fox queues } }