diff options
author | Bastien Nocera <hadess@hadess.net> | 2012-06-13 19:45:21 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2012-06-15 17:09:19 +0100 |
commit | ffe1e31a2c3be64f0897e453c8600589a45c05c0 (patch) | |
tree | 6221a233de41baef7a304cb3e5e4cdc2efc1403b /gtk/gtkmodules.c | |
parent | 49c618c59cb9ac1d1dcb95dd196875f1925a1fef (diff) | |
download | gtk+-ffe1e31a2c3be64f0897e453c8600589a45c05c0.tar.gz |
gtk: Always load the atk-bridge
Slightly modified by Alejandro PiƱeiro
https://bugzilla.gnome.org/show_bug.cgi?id=677491
Diffstat (limited to 'gtk/gtkmodules.c')
-rw-r--r-- | gtk/gtkmodules.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c index 4d92fa0013..5a15925993 100644 --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -247,10 +247,11 @@ static gboolean module_is_blacklisted (const gchar *name, gboolean verbose) { - if (g_str_equal (name, "gail")) + if (g_str_equal (name, "gail") || + g_str_equal (name, "atk-bridge")) { if (verbose) - g_message ("Not loading module \"gail\": The functionality is provided by GTK natively. Please try to not load it."); + g_message ("Not loading module \"%s\": The functionality is provided by GTK natively. Please try to not load it.", name); return TRUE; } |