From 44d211758081e0a67692f9aaac757827ed1ed50d Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 19 Oct 2013 16:58:16 +1000 Subject: [PATCH] Pixmap caching wasn't using correct fonts --- sleepyhead/Graphs/gXAxis.cpp | 3 ++- sleepyhead/Graphs/gYAxis.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gXAxis.cpp b/sleepyhead/Graphs/gXAxis.cpp index fd30dd37..4f895fab 100644 --- a/sleepyhead/Graphs/gXAxis.cpp +++ b/sleepyhead/Graphs/gXAxis.cpp @@ -65,6 +65,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) m_image.fill(Qt::transparent); painter.begin(&m_image); painter.setPen(Qt::black); + painter.setFont(*defaultfont); } double px,py; @@ -229,7 +230,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) if (m_utcfix) tx+=step_pixels/2.0; if ((tx+x)<(left+width)) { - if (!usepixmap) w.renderText(tmpstr,tx,texttop); + if (!usepixmap) w.renderText(tmpstr,tx,texttop,0,Qt::black,defaultfont); else painter.drawText(tx-left+20,texttop-top,tmpstr); } py=px; diff --git a/sleepyhead/Graphs/gYAxis.cpp b/sleepyhead/Graphs/gYAxis.cpp index 302f4cbd..e23345eb 100644 --- a/sleepyhead/Graphs/gYAxis.cpp +++ b/sleepyhead/Graphs/gYAxis.cpp @@ -340,7 +340,7 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) if (x>labelW) labelW=x; h=top+height-ty; if (hadd(left+width-4,h,left+width,h,line_color);