From 304a04328a34da5ae3927e9d61382025f58bc2a2 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 19 Mar 2022 16:53:13 -0400 Subject: [PATCH] Erase ActiveStations only once per Rx sequence. --- widgets/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 90c484404..1a7688850 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3257,7 +3257,9 @@ void MainWindow::decode() //decode() decodeBusy(true); } } - if((m_mode=="FT4" or m_mode=="FT8") and m_ActiveStationsWidget != NULL) m_ActiveStationsWidget->erase(); + qDebug() << "aa" << m_ihsym; + if((m_mode=="FT4" or (m_mode=="FT8" and m_ihsym==41) or m_diskData) and + m_ActiveStationsWidget != NULL) m_ActiveStationsWidget->erase(); } void::MainWindow::fast_decode_done()