diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-17 19:17:14 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-17 19:17:14 +0000 |
commit | 0bc1d2323f0244096823be7dbd35336ff02de0c1 (patch) | |
tree | 44701f81c3d2f8a06fb13aed8a3f1c70e9249a1e /gtk/gtkmodules.c | |
parent | ffd0459bc213606723c3b15983707ce22e805f08 (diff) | |
download | gtk+-0bc1d2323f0244096823be7dbd35336ff02de0c1.tar.gz |
revert a change that causes a11y regressions in OOo
Diffstat (limited to 'gtk/gtkmodules.c')
-rw-r--r-- | gtk/gtkmodules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c index 359cd8b678..33020f72fb 100644 --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -236,7 +236,7 @@ find_module (const gchar *name) module_name = g_module_build_path (NULL, name); } - module = g_module_open (module_name, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL); + module = g_module_open (module_name, G_MODULE_BIND_LAZY); g_free(module_name); return module; |