diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2018-11-06 06:34:54 +0100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-11-06 00:34:54 -0500 |
commit | 4636f0f623c71f1eda8628cbae4784fe08a8faf7 (patch) | |
tree | 18461a85035f946d6f4fd31b1a6ab161a3903899 /quantum/quantum_keycodes.h | |
parent | 5729380530ca28049a193f84b0199e77ba3e8edd (diff) | |
download | qmk_firmware-4636f0f623c71f1eda8628cbae4784fe08a8faf7.tar.gz qmk_firmware-4636f0f623c71f1eda8628cbae4784fe08a8faf7.zip |
Remove ALTG(kc) as it's misleading and is not actually AltGr (#4338)
* Remove ALTG(kc) as it's misleading and is not actually AltGr
* Add temporary alias for ALGR in keyboards/planck/keymaps/pevecyan/keymap.c
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index e983798f2b..53fece21cc 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h @@ -475,7 +475,6 @@ enum quantum_keycodes { #define HYPR(kc) (QK_LCTL | QK_LSFT | QK_LALT | QK_LGUI | (kc)) #define MEH(kc) (QK_LCTL | QK_LSFT | QK_LALT | (kc)) #define LCAG(kc) (QK_LCTL | QK_LALT | QK_LGUI | (kc)) -#define ALTG(kc) (QK_RCTL | QK_RALT | (kc)) #define SGUI(kc) (QK_LGUI | QK_LSFT | (kc)) #define SCMD(kc) SGUI(kc) #define SWIN(kc) SGUI(kc) |