mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-16 21:01:31 +00:00
Remove unicode init from process_record_* functions
This commit is contained in:
parent
18fcde13ad
commit
7b6391bd18
@ -93,7 +93,6 @@ void register_ucis(const char *hex) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool process_ucis (uint16_t keycode, keyrecord_t *record) {
|
bool process_ucis (uint16_t keycode, keyrecord_t *record) {
|
||||||
unicode_input_mode_init();
|
|
||||||
|
|
||||||
if (!qk_ucis_state.in_progress)
|
if (!qk_ucis_state.in_progress)
|
||||||
return true;
|
return true;
|
||||||
|
@ -20,11 +20,9 @@
|
|||||||
bool process_unicode(uint16_t keycode, keyrecord_t *record) {
|
bool process_unicode(uint16_t keycode, keyrecord_t *record) {
|
||||||
if (keycode > QK_UNICODE && record->event.pressed) {
|
if (keycode > QK_UNICODE && record->event.pressed) {
|
||||||
uint16_t unicode = keycode & 0x7FFF;
|
uint16_t unicode = keycode & 0x7FFF;
|
||||||
unicode_input_mode_init();
|
|
||||||
unicode_input_start();
|
unicode_input_start();
|
||||||
register_hex(unicode);
|
register_hex(unicode);
|
||||||
unicode_input_finish();
|
unicode_input_finish();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,7 +45,6 @@ __attribute__((weak))
|
|||||||
void unicode_map_input_error() {}
|
void unicode_map_input_error() {}
|
||||||
|
|
||||||
bool process_unicode_map(uint16_t keycode, keyrecord_t *record) {
|
bool process_unicode_map(uint16_t keycode, keyrecord_t *record) {
|
||||||
unicode_input_mode_init();
|
|
||||||
uint8_t input_mode = get_unicode_input_mode();
|
uint8_t input_mode = get_unicode_input_mode();
|
||||||
if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) {
|
if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) {
|
||||||
const uint32_t* map = unicode_map;
|
const uint32_t* map = unicode_map;
|
||||||
|
Loading…
Reference in New Issue
Block a user