From 5e089deefef8d1f8fafd1f85c77b3bfd342d2684 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 20 Dec 2011 12:32:57 +1000 Subject: [PATCH] Properly centered Daily report center header information --- mainwindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 9343a830..bef5803b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -844,8 +844,9 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date) cpapinfo+="\n\n"; painter.setFont(report_font); - bounds=painter.boundingRect(QRectF((virt_width/2)-(virt_width/6),top,virt_width/2,0),cpapinfo,QTextOption(Qt::AlignLeft)); - painter.drawText(bounds,cpapinfo,QTextOption(Qt::AlignLeft)); + //bounds=painter.boundingRect(QRectF((virt_width/2)-(virt_width/6),top,virt_width/2,0),cpapinfo,QTextOption(Qt::AlignLeft)); + bounds=painter.boundingRect(QRectF(0,top,virt_width,0),cpapinfo,QTextOption(Qt::AlignHCenter)); + painter.drawText(bounds,cpapinfo,QTextOption(Qt::AlignHCenter)); int ttop=bounds.height();