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
This commit is contained in:
Joe Taylor 2015-11-23 14:39:55 +00:00
parent 723200ae80
commit 06fd6e26be

View File

@ -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();
}