From 4ebd33597338f55e2d36a348c65bb7401ad149b7 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 18 Dec 2012 05:11:09 +0000 Subject: [PATCH] edje: ecore_imf cursor infomation update is not necessary in focus-out event SVN revision: 81201 --- legacy/edje/ChangeLog | 4 ++++ legacy/edje/src/lib/edje_entry.c | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/legacy/edje/ChangeLog b/legacy/edje/ChangeLog index f78071c323..2cf7dc9251 100644 --- a/legacy/edje/ChangeLog +++ b/legacy/edje/ChangeLog @@ -708,3 +708,7 @@ 2012-12-13 Bruno Dilly * Support physics. + +2012-12-18 Jihoon Kim + + * ecore_imf cursor infomation update is not necessary in focus-out event diff --git a/legacy/edje/src/lib/edje_entry.c b/legacy/edje/src/lib/edje_entry.c index 783ec76a1b..14564e18c3 100644 --- a/legacy/edje/src/lib/edje_entry.c +++ b/legacy/edje/src/lib/edje_entry.c @@ -128,7 +128,6 @@ _edje_entry_focus_out_cb(void *data, Evas_Object *o __UNUSED__, const char *emis if (!en || !en->imf_context) return; ecore_imf_context_reset(en->imf_context); - _edje_entry_imf_cursor_info_set(en); ecore_imf_context_focus_out(en->imf_context); } #endif @@ -184,7 +183,6 @@ _edje_focus_out_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, if (!en->imf_context) return; ecore_imf_context_reset(en->imf_context); - _edje_entry_imf_cursor_info_set(en); ecore_imf_context_focus_out(en->imf_context); #endif }