Invalidate x/yAxis texture pixmaps on window resize

This commit is contained in:
Mark Watkins 2013-01-18 17:58:26 +10:00
parent e24cc56975
commit 3539ebf055

View File

@ -1737,6 +1737,9 @@ void gGraph::DrawTextQue()
// margin recalcs.. // margin recalcs..
void gGraph::resize(int width, int height) void gGraph::resize(int width, int height)
{ {
invalidate_xAxisImage=true;
invalidate_yAxisImage=true;
Q_UNUSED(width); Q_UNUSED(width);
Q_UNUSED(height); Q_UNUSED(height);
//m_height=height; //m_height=height;
@ -3108,6 +3111,7 @@ void gGraphView::paintGL()
QColor col=Qt::white; QColor col=Qt::white;
quads->add(width()-m_graphs[0]->marginRight(),0,width()-m_graphs[0]->marginRight(),w,width(),w,width(),0,col.rgba()); quads->add(width()-m_graphs[0]->marginRight(),0,width()-m_graphs[0]->marginRight(),w,width(),w,width(),0,col.rgba());
quads->draw(); quads->draw();
//renderText(0,0,0,ss,*defaultfont);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
AddTextQue(ss,width()+7,w/2+4,90,col,defaultfont); AddTextQue(ss,width()+7,w/2+4,90,col,defaultfont);
#else #else