diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index a95eb658..5171873f 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -1351,32 +1351,19 @@ void MainWindow::on_action_Screenshot_triggered() ui->toolBox->hide(); QTimer::singleShot(250, this, SLOT(DelayedScreenshot())); } + void MainWindow::DelayedScreenshot() { // Make sure to scale for high resolution displays (like Retina) // qreal pr = devicePixelRatio(); - - QScreen * screen = QApplication::primaryScreen(); - - - int titleBarHeight = -QApplication::style()->pixelMetric(QStyle::PM_TitleBarHeight); -#ifdef Q_OS_WIN - titleBarHeight += 6; -#endif - - QPixmap pixmap = screen->grabWindow(winId(),0,titleBarHeight); - -/*#if defined(Q_OS_WIN) || defined(Q_OS_LINUX) || defined(Q_OS_HAIKU) - // grab the whole screen - grab() - QPixmap desktop = QPixmap::grabWindow(QApplication::desktop()->winId()); - - QPixmap pixmap = desktop.copy(x() * pr, y() * pr, (width()+6) * pr, (height()+22) * pr); - -#elif defined(Q_OS_MAC) - QPixmap pixmap = QPixmap::grabWindow(this->winId(), x(), y(), width() / pr, (height() / pr) + 10); -#endif */ + auto screenshotRect = geometry(); + auto titleBarHeight = QApplication::style()->pixelMetric(QStyle::PM_TitleBarHeight); + auto pixmap = QApplication::primaryScreen()->grabWindow(QDesktopWidget().winId(), + screenshotRect.left(), + screenshotRect.top() - titleBarHeight, + screenshotRect.width(), + screenshotRect.height() + titleBarHeight); QString a = p_pref->Get("{home}/Screenshots"); QDir dir(a);