commit: 41b1bb4aef8b550ba67c5a546be970820e072f8f
parent 75a037d2f0f9c54bad8e2f68ae82134559c92f22
Author: Dasky <32983009+daskygit@users.noreply.github.com>
Date: Tue, 27 May 2025 14:22:55 +0100
Fix dynamic keymap macro only sending first. (#25309)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/quantum/dynamic_keymap.c b/quantum/dynamic_keymap.c
@@ -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);
}