From 57ecd880c9e8dbb038dc9b3125a3ca6b2131f70f Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Mon, 18 May 2020 13:47:19 +0900 Subject: [PATCH] Fix bug that no way to show IME after generating key event in wearable In wearable, IME will be shown after focus out and focus in again. Change-Id: I22b93fdbadcaff831fae880078871c64ee1bf87f Signed-off-by: Jihoon Kim --- ism/extras/wayland_immodule/wayland_imcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ism/extras/wayland_immodule/wayland_imcontext.c b/ism/extras/wayland_immodule/wayland_imcontext.c index ae1cb8d..45f95be 100644 --- a/ism/extras/wayland_immodule/wayland_imcontext.c +++ b/ism/extras/wayland_immodule/wayland_imcontext.c @@ -3061,7 +3061,7 @@ wayland_im_context_focus_out(Ecore_IMF_Context *ctx) if (!imcontext || !imcontext->input) return; - if (_TV) { + if (_TV || _WEARABLE) { if (hw_keyboard_mode == EINA_TRUE) { vconf_set_bool (VCONFKEY_ISF_HW_KEYBOARD_INPUT_DETECTED, 0); hw_keyboard_mode = EINA_FALSE; -- 2.7.4