From 9896135c97ae513614310d46d10c7d175117f2a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Wed, 17 Sep 2014 18:44:33 +0200 Subject: [PATCH] a11y: set again NO_AT_BRIDGE=1 before calling meta_init() It was removed on commit 70099872ab2a2bb5e78080348c6df9444b3a87bb because it was thought to not be needed anymore. https://bugzilla.gnome.org/show_bug.cgi?id=736821 --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index f9fff2430..65617d98f 100644 --- a/src/main.c +++ b/src/main.c @@ -424,7 +424,10 @@ main (int argc, char **argv) meta_set_wm_name (WM_NAME); meta_set_gnome_wm_keybindings (GNOME_WM_KEYBINDINGS); + /* Prevent meta_init() from causing gtk to load the atk-bridge*/ + g_setenv ("NO_AT_BRIDGE", "1", TRUE); meta_init (); + g_unsetenv ("NO_AT_BRIDGE"); /* FIXME: Add gjs API to set this stuff and don't depend on the * environment. These propagate to child processes.