From 3539ebf0552633ba380e9183d6dbe0c441a7f791 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 18 Jan 2013 17:58:26 +1000 Subject: [PATCH] Invalidate x/yAxis texture pixmaps on window resize --- Graphs/gGraphView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index a8329c60..43989bf3 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1737,6 +1737,9 @@ void gGraph::DrawTextQue() // margin recalcs.. void gGraph::resize(int width, int height) { + invalidate_xAxisImage=true; + invalidate_yAxisImage=true; + Q_UNUSED(width); Q_UNUSED(height); //m_height=height; @@ -3108,6 +3111,7 @@ void gGraphView::paintGL() 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->draw(); + //renderText(0,0,0,ss,*defaultfont); #ifndef Q_OS_MAC AddTextQue(ss,width()+7,w/2+4,90,col,defaultfont); #else