diff options
| author | Joel Challis | 2024-10-12 01:29:32 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-12 01:29:32 +0200 |
| commit | 11daef82e0c710d7bdacc7c78fe21fae864be191 (patch) | |
| tree | ef6f4c3755c64b723803d436c44be5cf2eb83db9 /keyboards | |
| parent | c95f0fb6710e5def9523d19496c93a10d278d78a (diff) | |
zsa/moonlander: Fix execution of user callback (#24475)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/zsa/moonlander/moonlander.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/zsa/moonlander/moonlander.c b/keyboards/zsa/moonlander/moonlander.c index 14405fc412..faa1dc75e8 100644 --- a/keyboards/zsa/moonlander/moonlander.c +++ b/keyboards/zsa/moonlander/moonlander.c @@ -404,7 +404,7 @@ void keyboard_post_init_kb(void) { is_launching = true; defer_exec(500, startup_exec, NULL); #endif - matrix_init_user(); + keyboard_post_init_user(); } void eeconfig_init_kb(void) { // EEPROM is getting reset! |