diff options
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
| -rw-r--r-- | quantum/process_keycode/process_unicode.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index fd008eca1..19beb8452 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
| @@ -17,14 +17,8 @@ | |||
| 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; |
| 29 | unicode_input_start(); | 23 | unicode_input_start(); |
| 30 | register_hex(unicode); | 24 | register_hex(unicode); |
| @@ -32,4 +26,3 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record) { | |||
| 32 | } | 26 | } |
| 33 | return true; | 27 | return true; |
| 34 | } | 28 | } |
| 35 | |||
