diff options
author | Ryan <fauxpark@gmail.com> | 2023-08-27 13:30:19 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 13:30:19 +1000 |
commit | 70e34e491c297231a3f987fd69760d38e79dbfa4 (patch) | |
tree | a3fe26ea27c9d020142f4c248fa0bab5d32c1f9c /keyboards | |
parent | 95681b8ff4a92aacd0249e124d34cf16e510175e (diff) |
Unicode, Unicodemap and UCIS refactor (#21659)
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/spaceman/2_milk/keymaps/emoji/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/spaceman/2_milk/keymaps/emoji/keymap.c b/keyboards/spaceman/2_milk/keymaps/emoji/keymap.c index 8859573ce5..26ac20ad5c 100644 --- a/keyboards/spaceman/2_milk/keymaps/emoji/keymap.c +++ b/keyboards/spaceman/2_milk/keymaps/emoji/keymap.c @@ -11,7 +11,7 @@ void dance_key_one (tap_dance_state_t *state, void *user_data) { tap_code(KC_ENTER); reset_tap_dance (state); } else if (state->count == 2) { - cycle_unicode_input_mode(+1); + unicode_input_mode_step(); reset_tap_dance (state); } } |