From dcd25fc32bb0d8b8b87a18d3ff2e1d6814d5e849 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 9 Nov 2013 13:22:57 +1000 Subject: [PATCH] Show points when highlighting overview linecharts --- sleepyhead/Graphs/gSummaryChart.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index de162b2c..62ab06e4 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -435,7 +435,8 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) if (zd==hl_day) { QColor col=QColor("red"); col.setAlpha(64); - quads->add(x1-1,top,x1-1,top+height,x2,top+height,x2,top,col.rgba()); + if (m_graphtype!=GT_POINTS) + quads->add(x1-1,top,x1-1,top+height,x2,top+height,x2,top,col.rgba()); } if (m_graphtype==GT_SESSIONS) { @@ -578,8 +579,10 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) if ((px2-lastX[j])>barw+1) { lastdaygood=false; } -// if (days<180) -// points->add(px2-barw/2,py2,col1); + + if (zd==hl_day) { + points->add(px2-barw/2,py2,QColor("red").rgba()); + } if (lastdaygood) { lines->add(lastX[j]-barw/2,lastY[j],px2-barw/2,py2,col2); } else {