More graph Layout fixes

This commit is contained in:
Mark Watkins 2011-12-12 17:17:01 +10:00
parent 136918a563
commit c74c57f343
2 changed files with 3 additions and 3 deletions

View File

@ -1082,7 +1082,7 @@ void gGraph::paint(int originX, int originY, int width, int height)
int fw,font_height;
GetTextExtent("Wg@",fw,font_height);
m_margintop=font_height+(6*printScaleY());
m_margintop=font_height+(8*printScaleY());
//glColor4f(0,0,0,1);
left=marginLeft(),right=marginRight(),top=marginTop(),bottom=marginBottom();

View File

@ -983,8 +983,8 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date)
label+=":";
QRectF pagebnds=QRectF(0,top,res.width(),labelheight);
painter.drawText(pagebnds,label,QTextOption(Qt::AlignHCenter | Qt::AlignTop));
}
top+=labelheight; //pagebnds.height();
top+=labelheight; //pagebnds.height();
} else top+=labelheight/2;
PROFILE["UseAntiAliasing"]=force_antialiasing;
int tmb=g->m_marginbottom;