mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Add mousekey_send to (un)register_code
This commit is contained in:
parent
f13ca59361
commit
dad579c8f8
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue