Resolves: RHEL-157522 Resolves: RHEL-157538 Resolves: RHEL-157595 Resolves: RHEL-157609 Resolves: RHEL-157623 Resolves: RHEL-157638 Resolves: RHEL-157652 Resolves: RHEL-157666 Resolves: RHEL-157682 Resolves: RHEL-157696 Resolves: RHEL-157710 Resolves: RHEL-162720 Resolves: RHEL-162734 Resolves: RHEL-162749 Resolves: RHEL-162763 Resolves: RHEL-162777 Resolves: RHEL-162791 Resolves: RHEL-162805
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From e13100155debec49c5ded3740901ac2a3c669370 Mon Sep 17 00:00:00 2001
|
|
From: Michael Catanzaro <mcatanzaro@redhat.com>
|
|
Date: Tue, 7 Oct 2025 11:18:05 -0500
|
|
Subject: [PATCH] Use a single web process for Evolution
|
|
|
|
---
|
|
Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
|
index 5cbc8739a2fe..5778f7a2da72 100644
|
|
--- a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
|
+++ b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
|
@@ -457,6 +457,9 @@ static void webkitWebContextConstructed(GObject* object)
|
|
}
|
|
configuration->setTimeZoneOverride(String::fromUTF8(priv->timeZoneOverride.span()));
|
|
|
|
+ if (!g_strcmp0(g_get_prgname(), "evolution"))
|
|
+ configuration->setUsesSingleWebProcess(true);
|
|
+
|
|
#if !ENABLE(2022_GLIB_API)
|
|
if (!priv->websiteDataManager)
|
|
priv->websiteDataManager = adoptGRef(webkit_website_data_manager_new("local-storage-directory", priv->localStorageDirectory.data(), nullptr));
|
|
--
|
|
2.53.0
|
|
|