From 06fd6e26be426a61d9e5b9e1f164e69d9467ca2b Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 23 Nov 2015 14:39:55 +0000 Subject: [PATCH] Correct a misplaced m_h2 in plotter.cpp. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6161 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- plotter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plotter.cpp b/plotter.cpp index 05494aac5..b234b683e 100644 --- a/plotter.cpp +++ b/plotter.cpp @@ -71,9 +71,10 @@ void CPlotter::resizeEvent(QResizeEvent* ) //resizeEvent() m_OverlayPixmap.fill(Qt::black); m_WaterfallPixmap.fill(Qt::black); m_2DPixmap.fill(Qt::black); - m_ScalePixmap = QPixmap(m_w,m_h2); + m_ScalePixmap = QPixmap(m_w,30); m_ScalePixmap.fill(Qt::white); m_Percent2DScreen0 = m_Percent2DScreen; + qDebug() << "a" << m_h1 << m_h2 << m_h; } DrawOverlay(); }