From 2e3313d5e72347a81ce584a020268eb360759a8e Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 4 Nov 2013 14:49:41 +1000 Subject: [PATCH] Fix font PixmapCaching alignment --- sleepyhead/Graphs/gGraphView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index dbf24ccf..8200e046 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -2610,8 +2610,8 @@ void gGraphView::DrawTextQue() #endif if (q.angle!=0) { - float xxx=q.x-h-(h/2)-(buf/2); - float yyy=q.y+w/2; + float xxx=q.x-h-(h/2); + float yyy=q.y+ w/2 + buf/2; painter.translate(xxx,yyy); painter.rotate(-q.angle);