From f89a5e8ad76234ac92b6466ef9753433166dc0af Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 16 May 2014 19:55:48 +1000 Subject: [PATCH] Honour antialiasing setting in gLineChart --- sleepyhead/Graphs/gLineChart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index ecb5ccb5..d7b4f39f 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -250,7 +250,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) painter.setClipRect(left, top, width, height+1); painter.setClipping(true); - painter.setRenderHint(QPainter::Antialiasing, true); + painter.setRenderHint(QPainter::Antialiasing, PROFILE.appearance->antiAliasing()); for (int gi = 0; gi < m_codes.size(); gi++) {