edje: ecore_imf cursor infomation update is not necessary in focus-out event

SVN revision: 81201
This commit is contained in:
Jihoon Kim 2012-12-18 05:11:09 +00:00
parent 9cbe37a36a
commit 4ebd335973
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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
}