You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that on windows platform _os_keyboard eventually calls user32.keybd_event.
However, it makes the pressed modifiers to release for some reason.
Note that modifiers and non-modifiers are different and this affect only modifiers.
You can replicate it through the following code:
Hold shift key and run the code, you will find that the text cursor moves but the text is not selected, which is a proof that the shift key is released for a sudden.
This can be patched by modifying send function.
The text was updated successfully, but these errors were encountered:
It seems that on windows platform _os_keyboard eventually calls user32.keybd_event.
However, it makes the pressed modifiers to release for some reason.
Note that modifiers and non-modifiers are different and this affect only modifiers.
You can replicate it through the following code:
Hold shift key and run the code, you will find that the text cursor moves but the text is not selected, which is a proof that the shift key is released for a sudden.
This can be patched by modifying send function.
The text was updated successfully, but these errors were encountered: