From: InHong Han Date: Tue, 7 Jan 2020 07:00:29 +0000 (+0900) Subject: Fix issue character is committed twice when IME is slow X-Git-Tag: accepted/tizen/5.5/unified/20200121.031405~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fafba2d88ed857c940213a365bf384783040fc4e;p=platform%2Fcore%2Fuifw%2Fisf.git Fix issue character is committed twice when IME is slow Change-Id: If94eeeae69b3e73667f178082525a8333a494ed7 --- diff --git a/ism/extras/wayland_immodule/wayland_imcontext.c b/ism/extras/wayland_immodule/wayland_imcontext.c index ae06d98..574eb86 100644 --- a/ism/extras/wayland_immodule/wayland_imcontext.c +++ b/ism/extras/wayland_immodule/wayland_imcontext.c @@ -3376,6 +3376,11 @@ wayland_im_context_filter_event(Ecore_IMF_Context *ctx, break; } + if (imcontext->last_key_event_filter.serial < serial) { + LOGW("Timeout occured"); + ret = EINA_TRUE; + } + wl_event_queue_destroy(queue); }