From 43f45ea483a7bcc682f3420a28292824dd2ca748 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Wed, 18 Jan 2017 19:54:48 -0600 Subject: [PATCH] disable accelerated compositing mode in webkit to workaround crash until the issue is fixed upstream. Fixes #107 --- src/greeter.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/greeter.c b/src/greeter.c index dfe4a10c..a3e5f158 100644 --- a/src/greeter.c +++ b/src/greeter.c @@ -349,6 +349,9 @@ main(int argc, char **argv) { /* https://goo.gl/vDFwFe */ g_setenv ("GDK_CORE_DEVICE_EVENTS", "1", TRUE); + /* Temporary workaround until fixed upstream: https://goo.gl/wFJ4v7 */ + g_setenv("WEBKIT_DISABLE_COMPOSITING_MODE", "1", TRUE); + /* Initialize i18n */ bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");