edje: remove useless ecore_imf_context_reset call in case of pressing ESC and Return key

This commit is contained in:
Jihoon Kim 2013-04-19 14:46:42 +09:00
parent 34d4352055
commit 6e767dd75b
3 changed files with 5 additions and 4 deletions

View File

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

1
NEWS
View File

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

View 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");