diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 96f27ba6..b26bed2a 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -2034,6 +2034,9 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing) if (!sg) return QPixmap(); + // Pixmap caching screws up font sizes when printing + sg->setUsePixmapCache(false); + QFont * _defaultfont=defaultfont; QFont * _mediumfont=mediumfont; QFont * _bigfont=bigfont; diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index 7c230e66..fd30dd37 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -51,6 +51,8 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) QPainter painter; // Only need this for pixmap caching + // pixmap caching screws font size when printing + bool usepixmap=w.graphView()->usePixmapCache(); // Whether or not to use pixmap caching if (!usepixmap || (usepixmap && w.invalidate_xAxisImage)) { diff --git a/mainwindow.cpp b/mainwindow.cpp index 791df556..93c3479f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1668,8 +1668,8 @@ void MainWindow::updatestatusBarMessage (const QString & text) void MainWindow::on_actionPrint_Report_triggered() { #ifdef Q_WS_MAC - #if ((QT_VERSION <= QT_VERSION_CHECK(5, 0, 0)) && (QT_VERSION >= QT_VERSION_CHECK(4, 8, 0))) - QMessageBox::information(this,tr("Printing Broken"),tr("Sorry.. Printing is currently broken on the Mac platform :-(\n\nWe are currently waiting on a Qt Library bugfix"),QMessageBox::Ok); + #if ((QT_VERSION <= QT_VERSION_CHECK(4, 8, 4))) + QMessageBox::information(this,tr("Printing Disabled"),tr("Please rebuild SleepyHead with Qt 4.8.5 or greater, as printing causes a crash with this version of Qt"),QMessageBox::Ok); return; #endif #endif