ecore-wl2: correctly translate spacebar keyname into key events

fix T6620

@fix
This commit is contained in:
Mike Blumenkrantz 2018-01-22 13:02:44 -05:00
parent d1a7dd5e42
commit d555c6c903
1 changed files with 1 additions and 1 deletions

View File

@ -598,7 +598,7 @@ _ecore_wl2_input_symbol_rep_find(xkb_keysym_t keysym, char *buffer, int size, un
/* check if we are a control code */
if (n > 0 && !(
(buffer[0] > 0x0 && buffer[0] < 0x20) || /* others 0x0 to 0x1F control codes */
(buffer[0] > 0x0 && buffer[0] <= 0x20) || /* others 0x0 to 0x20 control codes */
buffer[0] == 0x7F)) /*delete control code */
return;