Oximetry graphs bounds fix, plus select glitch

This commit is contained in:
Mark Watkins 2011-08-26 15:36:41 +10:00
parent b8014fdaca
commit 86c4e30e12

View File

@ -152,8 +152,9 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height)
// Draw the lines & ticks // Draw the lines & ticks
// Turn on blending?? // Turn on blending??
glLineWidth(1);
glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_VERTEX_ARRAY);
glLineWidth(1);
w.qglColor(m_minor_color); w.qglColor(m_minor_color);
glVertexPointer(2, GL_SHORT, 0, minorvertarray); glVertexPointer(2, GL_SHORT, 0, minorvertarray);
glDrawArrays(GL_LINES, 0, minorvertcnt>>1); 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 // Draw the lines & ticks
// Turn on blending?? // Turn on blending??
glLineWidth(1);
glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_VERTEX_ARRAY);
glLineWidth(1);
w.qglColor(m_line_color); w.qglColor(m_line_color);
glVertexPointer(2, GL_SHORT, 0, vertarray); glVertexPointer(2, GL_SHORT, 0, vertarray);
glDrawArrays(GL_LINES, 0, vertcnt>>1); glDrawArrays(GL_LINES, 0, vertcnt>>1);