1
0

Remove UNICODE_KEY_OSX and UC_OSX (#18290)

This commit is contained in:
Ryan
2022-09-07 03:07:08 +10:00
committed by GitHub
parent c6ab11bc45
commit 8833b28361
22 changed files with 23 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
#ifdef AUDIO_ENABLE
#define STARTUP_SONG SONG(MARIO_MUSHROOM)
#define UNICODE_SONG_OSX SONG(COIN_SOUND)
#define UNICODE_SONG_MAC SONG(COIN_SOUND)
#define UNICODE_SONG_LNX SONG(UNICODE_LINUX)
#define UNICODE_SONG_WIN SONG(UNICODE_WINDOWS)
#define UNICODE_SONG_WINC SONG(UNICODE_WINDOWS)

View File

@@ -325,7 +325,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
set_unicode_input_mode(UC_LNX);
break;
case M_OSX:
set_unicode_input_mode(UC_OSX);
set_unicode_input_mode(UC_MAC);
break;
case M_FUNCTION:
if (record->event.pressed) {

View File

@@ -369,5 +369,5 @@ void matrix_scan_user(void) {
}
void matrix_init_user(void) {
set_unicode_input_mode(UC_OSX);
set_unicode_input_mode(UC_MAC);
}