diff options
author | Markus Fritsche <37203914+marfrit@users.noreply.github.com> | 2021-11-13 00:00:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 15:00:36 -0800 |
commit | 8323177472e65ccb47709efd1287a301267bbfd4 (patch) | |
tree | adcd6c209405d755bc43205a9b0cd70e369049e5 /quantum/process_keycode | |
parent | 57f63e43d862d3c36ee1e530920f7ee40e9713a2 (diff) | |
download | qmk_firmware-8323177472e65ccb47709efd1287a301267bbfd4.tar.gz qmk_firmware-8323177472e65ccb47709efd1287a301267bbfd4.zip |
add wait to unicode for win (#15061)
Co-authored-by: Markus Fritsche <fritsche.markus@gmail.com>
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r-- | quantum/process_keycode/process_unicode_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c index 46fcaaa86b..889c768a85 100644 --- a/quantum/process_keycode/process_unicode_common.c +++ b/quantum/process_keycode/process_unicode_common.c @@ -100,6 +100,7 @@ __attribute__((weak)) void unicode_input_start(void) { break; case UC_WIN: register_code(KC_LALT); + wait_ms(UNICODE_TYPE_DELAY); tap_code(KC_PPLS); break; case UC_WINC: |