From 4bce16d52edcfb8cba5253efc32407078cf47d20 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 28 Aug 2011 00:31:20 +1000 Subject: [PATCH] Disabled the blocks over the edges of XTicker, as it causes font problems and screen glitches on certain hardware --- Graphs/gXAxis.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index fcbcb541..684d3b2f 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -196,7 +196,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing - if (m_fadeout) { + /* if (m_fadeout) { glFlush(); w.DrawTextQue(); @@ -219,7 +219,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) glVertex2f(left+width+20,top+5); glEnd(); glDisable(GL_BLEND); - } + }*/ // glDisable(GL_SCISSOR_TEST); }