From 31189265b9497e3274f619707eca9e99d16e8652 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 19 Dec 2020 11:33:23 -0500 Subject: [PATCH] Erase the yellow "T M R 73" single-tone markers after a mode change. --- widgets/plotter.cpp | 3 ++- widgets/plotter.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/widgets/plotter.cpp b/widgets/plotter.cpp index 5dfacb3d2..4b5d2a7d8 100644 --- a/widgets/plotter.cpp +++ b/widgets/plotter.cpp @@ -140,10 +140,11 @@ void CPlotter::draw(float swide[], bool bScroll, bool bRed) //move current data down one line (must do this before attaching a QPainter object) if(bScroll and !m_bReplot) m_WaterfallPixmap.scroll(0,1,0,0,m_w,m_h1); QPainter painter1(&m_WaterfallPixmap); - if(m_bFirst or bRed or !m_bQ65_Sync) { + if(m_bFirst or bRed or !m_bQ65_Sync or m_mode!=m_mode0) { m_2DPixmap = m_OverlayPixmap.copy(0,0,m_w,m_h2); m_bFirst=false; } + m_mode0=m_mode; QPainter painter2D(&m_2DPixmap); if(!painter2D.isActive()) return; QFont Font("Arial"); diff --git a/widgets/plotter.h b/widgets/plotter.h index ad35f4ff8..c4ecded15 100644 --- a/widgets/plotter.h +++ b/widgets/plotter.h @@ -145,6 +145,7 @@ private: QString m_Str; QString m_HDivText[483]; QString m_mode; + QString m_mode0; QString m_modeTx; QString m_rxBand; QString m_redFile;