Add mousekey_send to (un)register_code
parent
f13ca59361
commit
dad579c8f8
|
@ -777,6 +777,7 @@ void register_code(uint8_t code)
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
else if IS_MOUSEKEY(code) {
|
||||
mousekey_on(code);
|
||||
mousekey_send();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
@ -841,6 +842,7 @@ void unregister_code(uint8_t code)
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
else if IS_MOUSEKEY(code) {
|
||||
mousekey_off(code);
|
||||
mousekey_send();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue