mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-14 16:11:50 -05:00
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:
parent
723200ae80
commit
06fd6e26be
@ -71,9 +71,10 @@ void CPlotter::resizeEvent(QResizeEvent* ) //resizeEvent()
|
|||||||
m_OverlayPixmap.fill(Qt::black);
|
m_OverlayPixmap.fill(Qt::black);
|
||||||
m_WaterfallPixmap.fill(Qt::black);
|
m_WaterfallPixmap.fill(Qt::black);
|
||||||
m_2DPixmap.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_ScalePixmap.fill(Qt::white);
|
||||||
m_Percent2DScreen0 = m_Percent2DScreen;
|
m_Percent2DScreen0 = m_Percent2DScreen;
|
||||||
|
qDebug() << "a" << m_h1 << m_h2 << m_h;
|
||||||
}
|
}
|
||||||
DrawOverlay();
|
DrawOverlay();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user