From: Jihoon Kim <jihoon48.kim@samsung.com>

Subject: [E-devel] [PATCH] bug fix : preedit text was commited when
shift key was pressed

ATM, preedit text is commited when shift key is pressed.
This patch file is for solving this bug.



SVN revision: 58887
This commit is contained in:
Jihoon Kim 2011-04-25 05:57:49 +00:00 committed by Carsten Haitzler
parent ac33622354
commit 3d2d5eb51d
1 changed files with 4 additions and 0 deletions

View File

@ -1204,6 +1204,10 @@ _edje_key_down_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, v
_edje_emit(ed, "entry,key,end", rp->part->name);
ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
}
else if (!strcmp(ev->key, "Shift_L") || !strcmp(ev->key, "Shift_R"))
{
return;
}
else if ((control) && (!strcmp(ev->key, "v")))
{
_edje_emit(ed, "entry,paste,request", rp->part->name);