edje: remove useless ecore_imf_context_reset call in case of pressing ESC and Return key
authorJihoon Kim <jihoon48.kim@samsung.com>
Fri, 19 Apr 2013 05:46:42 +0000 (14:46 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 19 Apr 2013 05:46:42 +0000 (14:46 +0900)
ChangeLog
NEWS
src/lib/edje/edje_entry.c

index 322a183..3ad1ad4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-19  Jihoon Kim (jihoon)
+
+        * Edje: Remove code to call ecore_imf_context_reset in case of pressing ESC, Return key
+
 2013-04-14  Carsten Haitzler (The Rasterman)
 
         * Evas: Fix evas gl_x11 to use default depth when visual
diff --git a/NEWS b/NEWS
index ba08f8b..7d30119 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -250,3 +250,4 @@ Fixes:
     * Evas textblock: Fixed a bug with deletion of ranges that end just a visual format.
     * Evas: If an object goes to be hidden without replacing the cur/prev state info, the object context can be corrupted at the next show time. Now it replaces the cur/prev in that rare case.
     * Evas: Fix evas gl_x11 in 16bpp and lower depths than 24/32 bpp.
+    * Edje: Fix useless ecore_imf_context_reset call in case of pressing ESC and Return key
index 102f0f3..f6611da 100644 (file)
@@ -1320,10 +1320,6 @@ _edje_key_down_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
      }
 #endif
 
-   if ((!strcmp(ev->keyname, "Escape")) ||
-       (!strcmp(ev->keyname, "Return")) || (!strcmp(ev->keyname, "KP_Enter")))
-     _edje_entry_imf_context_reset(rp);
-
    old_cur_pos = evas_textblock_cursor_pos_get(en->cursor);
 
    control = evas_key_modifier_is_set(ev->modifiers, "Control");