Fix weak modifier clear in action macro
parent
9f1d23bfe1
commit
0c21b263f9
|
@ -42,6 +42,7 @@ void action_macro_play(const macro_t *macro_p)
|
|||
dprintf("KEY_DOWN(%02X)\n", macro);
|
||||
if (IS_MOD(macro)) {
|
||||
add_weak_mods(MOD_BIT(macro));
|
||||
send_keyboard_report();
|
||||
} else {
|
||||
register_code(macro);
|
||||
}
|
||||
|
@ -51,6 +52,7 @@ void action_macro_play(const macro_t *macro_p)
|
|||
dprintf("KEY_UP(%02X)\n", macro);
|
||||
if (IS_MOD(macro)) {
|
||||
del_weak_mods(MOD_BIT(macro));
|
||||
send_keyboard_report();
|
||||
} else {
|
||||
unregister_code(macro);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue