diff options
author | Simos Xenitellis <simos@src.gnome.org> | 2008-10-08 23:04:54 +0000 |
---|---|---|
committer | Simos Xenitellis <simos@src.gnome.org> | 2008-10-08 23:04:54 +0000 |
commit | d84a56d3a3d4f9ce94a70da561d06c93780e990e (patch) | |
tree | 576721ffe128e4e38ef2d06b75fbdb4378772536 /gtk | |
parent | 941abf87804378aceba145cea658497b220c48f9 (diff) | |
download | gtk+-d84a56d3a3d4f9ce94a70da561d06c93780e990e.tar.gz |
Fixed Bug 554192 – deadkey-only compose sequences now working
svn path=/trunk/; revision=21613
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkimcontextsimple.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index a9eeb944ba..967d30c48f 100644 --- a/gtk/gtkimcontextsimple.c +++ b/gtk/gtkimcontextsimple.c @@ -933,12 +933,12 @@ gtk_im_context_simple_filter_keypress (GtkIMContext *context, return TRUE; tmp_list = tmp_list->next; } - - if (check_algorithmically (context_simple, n_compose)) - return TRUE; if (check_compact_table (context_simple, >k_compose_table_compact, n_compose)) return TRUE; + + if (check_algorithmically (context_simple, n_compose)) + return TRUE; } /* The current compose_buffer doesn't match anything */ |