diff options
author | ajreckof <tbonhoure@ymail.Com> | 2022-08-07 00:30:56 +0100 |
---|---|---|
committer | ajreckof <tbonhoure@ymail.Com> | 2023-01-15 18:49:20 +0100 |
commit | 4309dffc6ab413eadc76ff246adeaa542b4c63b2 (patch) | |
tree | c3b353775bd8355101f4e80f2e3418074b0cf983 /core/os/keyboard.h | |
parent | a51ca2beafc5d74d3e62cb56fbba76ceb39160a3 (diff) | |
download | redot-engine-4309dffc6ab413eadc76ff246adeaa542b4c63b2.tar.gz |
add CMD_OR_CTRL as a Key and not just a key modifier
Diffstat (limited to 'core/os/keyboard.h')
-rw-r--r-- | core/os/keyboard.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/os/keyboard.h b/core/os/keyboard.h index 389baee915..c78fa2a631 100644 --- a/core/os/keyboard.h +++ b/core/os/keyboard.h @@ -65,6 +65,11 @@ enum class Key { SHIFT = SPECIAL | 0x15, CTRL = SPECIAL | 0x16, META = SPECIAL | 0x17, +#if defined(MACOS_ENABLED) + CMD_OR_CTRL = META, +#else + CMD_OR_CTRL = CTRL, +#endif ALT = SPECIAL | 0x18, CAPSLOCK = SPECIAL | 0x19, NUMLOCK = SPECIAL | 0x1A, |