edje_entry: When preediting, cursor should not be moved.

This commit is contained in:
WooHyun Jung 2014-01-16 16:31:36 +09:00
parent d660dd12bb
commit 1d189f43f6
1 changed files with 4 additions and 0 deletions

View File

@ -1304,6 +1304,10 @@ _edje_key_down_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
(!strcmp(ev->key, "KP_Down") && !ev->string) ||
!strcmp(ev->key, "Up") ||
(!strcmp(ev->key, "KP_Up") && !ev->string) ||
!strcmp(ev->key, "Left") ||
(!strcmp(ev->key, "KP_Left") && !ev->string) ||
!strcmp(ev->key, "Right") ||
(!strcmp(ev->key, "KP_Right") && !ev->string) ||
!strcmp(ev->key, "Next") ||
(!strcmp(ev->key, "KP_Next") && !ev->string) ||
!strcmp(ev->key, "Prior") ||