summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-03-29 18:31:23 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-03-29 18:31:23 -0400
commitba8c18019d4258a9fb056ce84d1df8d510a7e444 (patch)
tree3b2297916b9d981ae424992b487dc0f5dff1de25
parentd8fb8db37c56b59001abd22bee21bb38f69b569b (diff)
downloadgtk+-ba8c18019d4258a9fb056ce84d1df8d510a7e444.tar.gz
imcontext: Look for Compose file in the right place
The documentation states that GTK will load a Compose file from ~/.config/gtk-3.0/Compose. Unfortunately, backports changed this unintentionally to look in the gtk-4.0 directory. Change it back.
-rw-r--r--gtk/gtkimcontextsimple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c
index 60ddbc3183..7ab3e4382b 100644
--- a/gtk/gtkimcontextsimple.c
+++ b/gtk/gtkimcontextsimple.c
@@ -162,7 +162,7 @@ gtk_im_context_simple_init_compose_table (void)
const char * const *sys_lang = NULL;
char *x11_compose_file_dir = get_x11_compose_file_dir ();
- path = g_build_filename (g_get_user_config_dir (), "gtk-4.0", "Compose", NULL);
+ path = g_build_filename (g_get_user_config_dir (), "gtk-3.0", "Compose", NULL);
if (g_file_test (path, G_FILE_TEST_EXISTS))
{
G_LOCK (global_tables);