diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 7f78cc73..e6ac99f1 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -740,9 +740,11 @@ void MainWindow::DelayedScreenshot() int h=height(); // Scale for high resolution displays (like Retina) +#if(QT_VERSION>=QT_VERSION_CHECK(5,0,0)) qreal pr=devicePixelRatio(); w/=pr; h/=pr; +#endif QPixmap pixmap=QPixmap::grabWindow(this->winId(),x(),y(),w,h);