From 4f0f91b0c1895a9a971e3d80c3a189cc1178d13f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 31 Dec 2011 22:26:26 +1000 Subject: [PATCH] Turned off the line stipple and GL blending for the horizontal grids --- Graphs/gGraphView.cpp | 5 +++-- Graphs/gYAxis.cpp | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 03be9f7f..6c112f1d 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -307,7 +307,7 @@ void GLShortBuffer::draw() { if (m_cnt>0) { bool antialias=m_forceantialias || (PROFILE.ExistsAndTrue("UseAntiAliasing") && m_antialias); - if (m_stippled) antialias=true; + if (m_stippled) antialias=false; float size=m_size; if (antialias) { glEnable(GL_BLEND); @@ -325,7 +325,8 @@ void GLShortBuffer::draw() } if (m_type==GL_LINES || m_type==GL_LINE_LOOP) { if (m_stippled) { - glLineStipple(1, 0xcccc); + glLineStipple(1, 0xffff); + size=1; glEnable(GL_LINE_STIPPLE); } else { glLineStipple(1, 0xFFFF); diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 832d356e..47f18cfd 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -20,9 +20,9 @@ gXGrid::gXGrid(QColor col) { Q_UNUSED(col) - m_major_color=QColor(130,130,130,64); + m_major_color=QColor(180,180,180,64); //m_major_color=QColor(180,180,180,92); - m_minor_color=QColor(200,200,200,64); + m_minor_color=QColor(230,230,230,64); m_show_major_lines=true; m_show_minor_lines=true; }