ejde/edje_entry.c : commit_cancel should be EINA_FALSE when there is one or more characters in preediting string.

This commit is contained in:
WooHyun Jung 2013-04-29 12:46:22 +09:00
parent 57461dc6a1
commit a248548712
1 changed files with 3 additions and 1 deletions

View File

@ -216,7 +216,9 @@ _text_filter_markup_prepend_internal(Edje *ed, Entry *en, Evas_Textblock_Cursor
#ifdef HAVE_ECORE_IMF
// For skipping useless commit
if (en->have_preedit && (!text || !strcmp(text, "")))
en->commit_cancel = EINA_TRUE;
en->commit_cancel = EINA_TRUE;
else
en->commit_cancel = EINA_FALSE;
#endif
if (text)
{