From 86c4e30e129efd54f665bd4be626282a537c0435 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 26 Aug 2011 15:36:41 +1000 Subject: [PATCH] Oximetry graphs bounds fix, plus select glitch --- Graphs/gYAxis.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 1f97be97..4ca81855 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -152,8 +152,9 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) // Draw the lines & ticks // Turn on blending?? - glLineWidth(1); + glEnableClientState(GL_VERTEX_ARRAY); + glLineWidth(1); w.qglColor(m_minor_color); glVertexPointer(2, GL_SHORT, 0, minorvertarray); glDrawArrays(GL_LINES, 0, minorvertcnt>>1); @@ -330,8 +331,8 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) // Draw the lines & ticks // Turn on blending?? - glLineWidth(1); glEnableClientState(GL_VERTEX_ARRAY); + glLineWidth(1); w.qglColor(m_line_color); glVertexPointer(2, GL_SHORT, 0, vertarray); glDrawArrays(GL_LINES, 0, vertcnt>>1);