edje: ecore_imf cursor infomation update is not necessary in focus-out event
authorJihoon Kim <imfine98@gmail.com>
Tue, 18 Dec 2012 05:11:09 +0000 (05:11 +0000)
committerJihoon Kim <imfine98@gmail.com>
Tue, 18 Dec 2012 05:11:09 +0000 (05:11 +0000)
SVN revision: 81201

legacy/edje/ChangeLog
legacy/edje/src/lib/edje_entry.c

index f78071c..2cf7dc9 100644 (file)
 2012-12-13  Bruno Dilly
 
         * Support physics.
+
+2012-12-18  Jihoon Kim
+
+       * ecore_imf cursor infomation update is not necessary in focus-out event
index 783ec76..14564e1 100644 (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
 }