X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=quantum%2Fprocess_keycode%2Fprocess_unicode_common.c;h=7f34ad57cfda08875e06816ed01d354723e2140b;hb=4c1164c469a103981478222b21ef5ffaa364448d;hp=1dbdec3e7148b7f51d3d303d6c307871c8d0a4cf;hpb=27aa185222b709dc53a1478e46d6e04271dc199c;p=qmk_firmware.git diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c index 1dbdec3e7..7f34ad57c 100644 --- a/quantum/process_keycode/process_unicode_common.c +++ b/quantum/process_keycode/process_unicode_common.c @@ -15,6 +15,7 @@ */ #include "process_unicode_common.h" +#include "eeprom.h" static uint8_t input_mode; uint8_t mods; @@ -48,6 +49,9 @@ void unicode_input_start (void) { case UC_OSX: register_code(KC_LALT); break; + case UC_OSX_RALT: + register_code(KC_RALT); + break; case UC_LNX: register_code(KC_LCTL); register_code(KC_LSFT); @@ -77,6 +81,9 @@ void unicode_input_finish (void) { case UC_WIN: unregister_code(KC_LALT); break; + case UC_OSX_RALT: + unregister_code(KC_RALT); + break; case UC_LNX: register_code(KC_SPC); unregister_code(KC_SPC);