goto end; after input completion

SVN revision: 49049
This commit is contained in:
Hannes Janetzek 2010-05-20 04:44:56 +00:00
parent a3e9a1d7eb
commit c83a8b509d
1 changed files with 2 additions and 1 deletions

View File

@ -1879,6 +1879,7 @@ _evry_cb_key_down(void *data __UNUSED__, int type __UNUSED__, void *event)
(!strcmp(ev->key, "Tab")))))
{
_evry_input_complete(s);
goto end;
}
else if ((ev->modifiers & ECORE_EVENT_MODIFIER_CTRL) &&
(!strcmp(ev->key, "Delete") || !strcmp(ev->key, "Insert")))
@ -1888,7 +1889,7 @@ _evry_cb_key_down(void *data __UNUSED__, int type __UNUSED__, void *event)
int promote = (!strcmp(ev->key, "Insert"));
_evry_cheat_history(s, promote, delete);
goto end;
}
else if (ev->modifiers & ECORE_EVENT_MODIFIER_CTRL)
{