summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-01-06 15:02:53 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-01-19 10:15:22 +0000
commit34b5b4b19c510aa6d701119d9c594a754bd21afc (patch)
treea7ddc4712771c2f61c94bf41deadbeb80fa0bb54 /src
parentc3fce935224038c64ee665ca4497982dcc9486f6 (diff)
Do not override signal handlers
We used to have this, but it got dropped at some point in an adaptions. Fixes: QTBUG-99263 Change-Id: I3bf86a1b42edca0cd792723c85d7dcb7877fea37 Reviewed-by: Michal Klocek <michal.klocek@qt.io> (cherry picked from commit fbaab46becbf5ea063a8b4a01abf8cd1d4a1725d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/core/web_engine_context.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/web_engine_context.cpp b/src/core/web_engine_context.cpp
index 6c93dff72..eb459fbdc 100644
--- a/src/core/web_engine_context.cpp
+++ b/src/core/web_engine_context.cpp
@@ -796,6 +796,7 @@ WebEngineContext::WebEngineContext()
registerMainThreadFactories();
content::ContentMainParams contentMainParams(m_mainDelegate.get());
+ contentMainParams.setup_signal_handlers = false;
#if defined(OS_WIN)
contentMainParams.sandbox_info = staticSandboxInterfaceInfo();
sandbox::SandboxInterfaceInfo sandbox_info = {0};