Fix font PixmapCaching alignment

This commit is contained in:
Mark Watkins 2013-11-04 14:49:41 +10:00
parent ff12a0eba4
commit 2e3313d5e7

View File

@ -2610,8 +2610,8 @@ void gGraphView::DrawTextQue()
#endif #endif
if (q.angle!=0) { if (q.angle!=0) {
float xxx=q.x-h-(h/2)-(buf/2); float xxx=q.x-h-(h/2);
float yyy=q.y+w/2; float yyy=q.y+ w/2 + buf/2;
painter.translate(xxx,yyy); painter.translate(xxx,yyy);
painter.rotate(-q.angle); painter.rotate(-q.angle);