diff options
Diffstat (limited to 'clients/keyboard.c')
-rw-r--r-- | clients/keyboard.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clients/keyboard.c b/clients/keyboard.c index 0cbf531c..c90c5b2d 100644 --- a/clients/keyboard.c +++ b/clients/keyboard.c @@ -303,8 +303,26 @@ input_method_context_surrounding_text(void *data, fprintf(stderr, "Surrounding text updated: %s\n", text); } +static void +input_method_context_reset(void *data, + struct input_method_context *context) +{ + struct virtual_keyboard *keyboard = data; + + fprintf(stderr, "Reset pre-edit buffer\n"); + + if (strlen(keyboard->preedit_string)) { + input_method_context_preedit_string(context, + "", + 0); + free(keyboard->preedit_string); + keyboard->preedit_string = strdup(""); + } +} + static const struct input_method_context_listener input_method_context_listener = { input_method_context_surrounding_text, + input_method_context_reset }; static void |