fix segfault. Closes T1716

This commit is contained in:
Boris Faure 2014-10-05 23:06:46 +02:00
parent fe8b3b9b64
commit 2ae440c9c2
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ _key_try(Termpty *ty, const Tty_Key *map, int len, const Evas_Event_Key_Down *ev
s = &kv->ctrl_alt;
else if (!alt && !ctrl && shift)
s = &kv->shift;
else if (!alt && !ctrl && shift)
else if (alt && !ctrl && shift)
s = &kv->shift_alt;
else if (!alt && !ctrl && shift)
else if (!alt && ctrl && shift)
s = &kv->shift_ctrl;
else if (alt && ctrl && shift)
s = &kv->shift_ctrl_alt;