mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Pixmap caching wasn't using correct fonts
This commit is contained in:
parent
aced743226
commit
44d2117580
@ -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;
|
||||
|
@ -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 (h<top) continue;
|
||||
w.renderText(fd,left+width-8-x,(h+(y/2.0)),0,m_text_color);
|
||||
w.renderText(fd,left+width-8-x,(h+(y/2.0)),0,m_text_color,defaultfont);
|
||||
|
||||
lines->add(left+width-4,h,left+width,h,line_color);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user