summaryrefslogtreecommitdiff
blob: 192f4d0d3d8ce0ec52e21481eeba18775fcf2a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From 66aeb5aeb4065f6a5482d10bacbe370de2e49b7f Mon Sep 17 00:00:00 2001
From: Mart Raudsepp <leio@gentoo.org>
Date: Sun, 29 Dec 2019 15:47:32 +0200
Subject: [PATCH] Add env var workaround for WebKitGTK-2.26 compatibility

---
 src/shell/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/shell/main.c b/src/shell/main.c
index abc140d55f..cd671fd89a 100644
--- a/src/shell/main.c
+++ b/src/shell/main.c
@@ -607,6 +607,9 @@ main (gint argc,
 		 * it already set, thus he/she can override the Evolution's default. */
 		g_setenv ("WEBKIT_DISABLE_COMPOSITING_MODE", "1", FALSE);
 
+		/* Workaround issues with WebKitGTK 2.26 */
+		g_setenv ("WEBKIT_USE_SINGLE_WEB_PROCESS", "1", FALSE);
+
 		/* FIXME WK2 - Look if we still need this it looks like it's not. */
 		/* Workaround https://bugzilla.gnome.org/show_bug.cgi?id=683548 */
 		g_type_ensure (WEBKIT_TYPE_WEB_VIEW);
-- 
2.20.1