diff options
author | Giovanni Campagna <gcampagna@src.gnome.org> | 2013-02-02 03:11:33 +0800 |
---|---|---|
committer | Giovanni Campagna <gcampagna@src.gnome.org> | 2013-02-06 05:45:54 +0800 |
commit | 8b63fec4044035369c3552c7324b5b42ca112686 (patch) | |
tree | 45bccbd6f5977a2ff4e52a03666de0a3950b0e89 | |
parent | 05bf9a53c2e0ef8c0ce13450fc853e7b4d247ae4 (diff) | |
download | gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar.gz gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar.bz2 gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar.lz gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar.xz gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.tar.zst gsoc2013-epiphany-8b63fec4044035369c3552c7324b5b42ca112686.zip |
Don't ask Xlib to skip ARGB visuals
WebKit uses GLX windows internally, which will have alpha. If any
of those windows receives an event, Gtk will attempt to create a
foreign GdkWindow wrapping them, and will crash because XGetWindowAttributes
will return a NULL visual.
https://bugzilla.gnome.org/show_bug.cgi?id=693030
-rw-r--r-- | src/ephy-main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 5c33629ab..471ccaeb2 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -355,9 +355,6 @@ main (int argc, exit (1); } - /* Work-around Flash Player crash */ - g_setenv ("XLIB_SKIP_ARGB_VISUALS", "1", FALSE); - /* Run the migration in all cases, except when running a private instance without a given profile directory or running in incognito mode. */ |