summaryrefslogtreecommitdiffstats
path: root/keyboards/contra
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-01-03 17:13:55 +0100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-01-03 17:13:55 +0100
commite76bf17d36c3e23d4c780ab7dd0a10b5883889a2 (patch)
tree86220261daa80f6d1fd8b3bf4605132052eccfa8 /keyboards/contra
parent6cb2d7ba6dc19fe579fac856fbce36be0f8384f6 (diff)
downloadqmk_firmware-e76bf17d36c3e23d4c780ab7dd0a10b5883889a2.tar.gz
qmk_firmware-e76bf17d36c3e23d4c780ab7dd0a10b5883889a2.tar.xz
Remove redundant, language-specific aliases for KC_ALGR (#4720)
* Use standard KC_ALGR, remove language-specific redefinitions * Use ALGR instead of ALTGR in BÉPO and Canadian multilingual keymaps * Remove BE_LALT, BE_LGUI aliases
Diffstat (limited to 'keyboards/contra')
-rw-r--r--keyboards/contra/keymaps/maxr1998/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/contra/keymaps/maxr1998/keymap.c b/keyboards/contra/keymaps/maxr1998/keymap.c
index 87bf33894..4d731c08b 100644
--- a/keyboards/contra/keymaps/maxr1998/keymap.c
+++ b/keyboards/contra/keymaps/maxr1998/keymap.c
@@ -127,11 +127,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
case NR_L3:
if (record->event.pressed) {
- register_code(DE_ALGR);
+ register_code(KC_ALGR);
layer_on(_NUMROW_L3);
} else {
layer_off(_NUMROW_L3);
- unregister_code(DE_ALGR);
+ unregister_code(KC_ALGR);
}
return false;
default: