jihoon pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=98fac39cb90aacd6ea97a493d51e7ccb107ca880
commit 98fac39cb90aacd6ea97a493d51e7ccb107ca880 Author: Jihoon Kim <jihoon48....@samsung.com> Date: Fri Oct 11 10:23:19 2013 +0900 ecore_imf_example: notify the cursor information in focus-in handler --- src/examples/ecore/ecore_imf_example.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/examples/ecore/ecore_imf_example.c b/src/examples/ecore/ecore_imf_example.c index 406dcc6..73bf4fd 100644 --- a/src/examples/ecore/ecore_imf_example.c +++ b/src/examples/ecore/ecore_imf_example.c @@ -95,6 +95,9 @@ _entry_focus_in_cb(void *data, Evas *e, Evas_Object *obj, void *event_info) if (en->imf_context) ecore_imf_context_focus_in(en->imf_context); + + // notify the cursor information + _imf_cursor_info_set(en); } static void --