feat(GODT-2770): proof of concept for web view as overlay.

This commit is contained in:
Xavier Michelon
2023-07-20 12:32:03 +02:00
parent 03c3404044
commit 87e79fdcba
8 changed files with 104 additions and 4 deletions

View File

@ -29,6 +29,7 @@
#include <bridgepp/Log/Log.h>
#include <bridgepp/Log/LogUtils.h>
#include <bridgepp/ProcessMonitor.h>
#include <QtWebView>
#ifdef Q_OS_MACOS
@ -284,6 +285,7 @@ int main(int argc, char *argv[]) {
QCoreApplication::setAttribute(Qt::AA_UseSoftwareOpenGL); // must be called before instantiating the BridgeApp
}
QtWebView::initialize();
BridgeApp guiApp(argc, argv);
initSentry();
auto sentryCloser = qScopeGuard([] { sentry_close(); });