1
0

Remove unicode init from process_record_* functions

This commit is contained in:
Drashna Jaelre
2018-11-02 08:41:55 -07:00
parent 18fcde13ad
commit 7b6391bd18
3 changed files with 0 additions and 4 deletions

View File

@@ -20,11 +20,9 @@
bool process_unicode(uint16_t keycode, keyrecord_t *record) {
if (keycode > QK_UNICODE && record->event.pressed) {
uint16_t unicode = keycode & 0x7FFF;
unicode_input_mode_init();
unicode_input_start();
register_hex(unicode);
unicode_input_finish();
}
return true;
}