fix(keys): Replace GUI with Application / Context Menu
This was a misrepresentation in the standardized keys that originated in earlier code.
This commit is contained in:
parent
651204c121
commit
c6abdb1890
1 changed files with 6 additions and 6 deletions
|
@ -493,12 +493,12 @@
|
||||||
/* Keyboard Pipe */
|
/* Keyboard Pipe */
|
||||||
#define PIPE2 (LS(HID_USAGE_KEY_KEYBOARD_NON_US_BACKSLASH_AND_PIPE))
|
#define PIPE2 (LS(HID_USAGE_KEY_KEYBOARD_NON_US_BACKSLASH_AND_PIPE))
|
||||||
|
|
||||||
/* Keyboard GUI (Windows / Command / Meta) */
|
/* Keyboard Application (Context Menu) */
|
||||||
#define GUI (HID_USAGE_KEY_KEYBOARD_APPLICATION)
|
#define K_APPLICATION (HID_USAGE_KEY_KEYBOARD_APPLICATION)
|
||||||
#define WIN (GUI)
|
#define K_APP (K_APPLICATION)
|
||||||
#define COMMAND (GUI)
|
#define K_CONTEXT_MENU (K_APPLICATION)
|
||||||
#define CMD (GUI)
|
#define K_CMENU (K_APPLICATION)
|
||||||
#define META (GUI)
|
#define GUI (K_APPLICATION) // WARNING: DEPRECATED (DO NOT USE)
|
||||||
|
|
||||||
/* Keyboard Power */
|
/* Keyboard Power */
|
||||||
#define K_POWER (HID_USAGE_KEY_KEYBOARD_POWER)
|
#define K_POWER (HID_USAGE_KEY_KEYBOARD_POWER)
|
||||||
|
|
Loading…
Reference in a new issue