Browse Source

disable accelerated compositing mode in webkit to workaround crash until the issue is fixed upstream. Fixes #107

(cherry picked from commit 43f45ea)
sisyphus
Dustin Falgout 8 years ago
parent
commit
e812e98bcf
  1. 3
      src/greeter.c

3
src/greeter.c

@ -327,6 +327,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");

Loading…
Cancel
Save