Fix dynamic keymap macro only sending first. (#25309)

This commit is contained in:
Dasky 2025-05-27 14:22:55 +01:00 committed by GitHub
parent 75a037d2f0
commit 41b1bb4aef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -166,6 +166,6 @@ void dynamic_keymap_macro_send(uint8_t id) {
++offset;
}
send_string_nvm_state_t state = {.offset = 0};
send_string_nvm_state_t state = {.offset = offset};
send_string_with_delay_impl(send_string_get_next_nvm, &state, DYNAMIC_KEYMAP_MACRO_DELAY);
}