input: add key mapping for XKB_KEY_KP_Decimal

This commit is contained in:
Daniel Eklöf 2020-06-27 20:03:41 +02:00
parent 9f31cfa764
commit 26528f6a73
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 3 additions and 0 deletions

View file

@ -461,6 +461,7 @@ keymap_data_for_sym(xkb_keysym_t sym, size_t *count)
case XKB_KEY_KP_Subtract: *count = ALEN(key_kp_subtract); return key_kp_subtract;
case XKB_KEY_KP_Add: *count = ALEN(key_kp_add); return key_kp_add;
case XKB_KEY_KP_Separator: *count = ALEN(key_kp_separator); return key_kp_separator;
case XKB_KEY_KP_Decimal: *count = ALEN(key_kp_decimal); return key_kp_decimal;
case XKB_KEY_KP_0: *count = ALEN(key_kp_0); return key_kp_0;
case XKB_KEY_KP_1: *count = ALEN(key_kp_1); return key_kp_1;
case XKB_KEY_KP_2: *count = ALEN(key_kp_2); return key_kp_2;