forked from AuroraMiddleware/gtk
imcontextsimple: Fix a possible problem
We were forgetting to handle the compose sequence case in reset().
This commit is contained in:
parent
d883b0a383
commit
6c1f404e5a
@ -1077,9 +1077,12 @@ gtk_im_context_simple_reset (GtkIMContext *context)
|
||||
|
||||
priv->compose_buffer[0] = 0;
|
||||
|
||||
if (priv->tentative_match->len > 0 || priv->in_hex_sequence)
|
||||
if (priv->tentative_match->len > 0 ||
|
||||
priv->in_hex_sequence ||
|
||||
priv->in_compose_sequence)
|
||||
{
|
||||
priv->in_hex_sequence = FALSE;
|
||||
priv->in_compose_sequence = FALSE;
|
||||
g_string_set_size (priv->tentative_match, 0);
|
||||
priv->tentative_match_len = 0;
|
||||
g_signal_emit_by_name (context_simple, "preedit-changed");
|
||||
|
Loading…
Reference in New Issue
Block a user