Skip to content
Snippets Groups Projects
Commit 96dd8687 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

HID: input: add mapping for Expose/Overview key


According to HUTRR77 usage 0x29f from the consumer page is reserved for
the Desktop application to present all running user’s application windows.
Linux defines KEY_SCALE to request Compiz Scale (Expose) mode, so let's
add the mapping.

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f7b3d85a
No related branches found
No related tags found
No related merge requests found
......@@ -1030,6 +1030,8 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
case 0x2cb: map_key_clear(KEY_KBDINPUTASSIST_ACCEPT); break;
case 0x2cc: map_key_clear(KEY_KBDINPUTASSIST_CANCEL); break;
case 0x29f: map_key_clear(KEY_SCALE); break;
default: map_key_clear(KEY_UNKNOWN);
}
break;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment