allow discord to go fullscreen

This commit is contained in:
Malte Jürgens
2022-07-27 14:13:59 +02:00
parent 99df18ef89
commit 77300ed178
3 changed files with 15 additions and 1 deletions

View File

@@ -23,8 +23,18 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
}
void MainWindow::setupWebView() {
m_webView = new QWebEngineView(this);
auto page = new DiscordPage(this);
connect(page, &QWebEnginePage::fullScreenRequested, this,
&MainWindow::fullScreenRequested);
m_webView = new QWebEngineView(this);
m_webView->setPage(page);
setCentralWidget(m_webView);
}
void MainWindow::fullScreenRequested(
QWebEngineFullScreenRequest fullScreenRequest) {
fullScreenRequest.accept();
fullScreenRequest.toggleOn() ? showFullScreen() : showNormal();
}