mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Qt4 compile fix
This commit is contained in:
parent
4989b492f3
commit
96d6acac19
@ -740,9 +740,11 @@ void MainWindow::DelayedScreenshot()
|
|||||||
int h=height();
|
int h=height();
|
||||||
|
|
||||||
// Scale for high resolution displays (like Retina)
|
// Scale for high resolution displays (like Retina)
|
||||||
|
#if(QT_VERSION>=QT_VERSION_CHECK(5,0,0))
|
||||||
qreal pr=devicePixelRatio();
|
qreal pr=devicePixelRatio();
|
||||||
w/=pr;
|
w/=pr;
|
||||||
h/=pr;
|
h/=pr;
|
||||||
|
#endif
|
||||||
|
|
||||||
QPixmap pixmap=QPixmap::grabWindow(this->winId(),x(),y(),w,h);
|
QPixmap pixmap=QPixmap::grabWindow(this->winId(),x(),y(),w,h);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user