Fix bug in shell which was causing wayland clients to always have

input stuck in upper case if Shift was pressed than released.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-08-14 14:01:35 +01:00
parent cf76a4b142
commit 21f267d007
1 changed files with 1 additions and 1 deletions

View File

@ -1427,7 +1427,7 @@ _e_wl_shell_shell_surface_cb_key_up(void *data, Evas_Object *obj EINA_UNUSED, vo
WL_KEYBOARD_KEY_STATE_RELEASED);
/* update xkb key state */
xkb_state_update_key(_e_wl_comp->input->xkb.state, key + 8, XKB_KEY_DOWN);
xkb_state_update_key(_e_wl_comp->input->xkb.state, key + 8, XKB_KEY_UP);
/* update keyboard modifiers */
serial = wl_display_get_serial(_e_wl_comp->wl.display);