diff options
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
-rw-r--r-- | quantum/process_keycode/process_unicode.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index fd008eca1..f39c4a36e 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
@@ -17,15 +17,10 @@ | |||
17 | #include "action_util.h" | 17 | #include "action_util.h" |
18 | #include "eeprom.h" | 18 | #include "eeprom.h" |
19 | 19 | ||
20 | static uint8_t first_flag = 0; | ||
21 | |||
22 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { | 20 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { |
23 | if (keycode > QK_UNICODE && record->event.pressed) { | 21 | if (keycode > QK_UNICODE && record->event.pressed) { |
24 | if (first_flag == 0) { | ||
25 | set_unicode_input_mode(eeprom_read_byte(EECONFIG_UNICODEMODE)); | ||
26 | first_flag = 1; | ||
27 | } | ||
28 | uint16_t unicode = keycode & 0x7FFF; | 22 | uint16_t unicode = keycode & 0x7FFF; |
23 | unicode_input_mode_init(); | ||
29 | unicode_input_start(); | 24 | unicode_input_start(); |
30 | register_hex(unicode); | 25 | register_hex(unicode); |
31 | unicode_input_finish(); | 26 | unicode_input_finish(); |