Fix Windows multimonitor capture

This commit is contained in:
lupoDharkael
2018-01-24 00:43:19 +01:00
parent 6e9a9bc69a
commit a9b0c21304
2 changed files with 10 additions and 0 deletions

View File

@@ -77,7 +77,11 @@ void Controller::createVisualCapture(const uint id, const QString &forcedSavePat
this, &Controller::captureFailed);
connect(m_captureWindow, &CaptureWidget::captureTaken,
this, &Controller::captureTaken);
#ifdef Q_OS_WIN
m_captureWindow->show();
#else
m_captureWindow->showFullScreen();
#endif
}
}