We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suppress=True will cause a 1-second delay when pressing Ctrl, ALT, and other keys separately, such as running the ALT key in games`````how to do?
The text was updated successfully, but these errors were encountered:
I have the same problem. The key shift I detected was a delay in the original shift key function. Do you know who can help us?
shift
keyboard.add_hotkey('shift+tab', alt_handler, suppress=True, timeout=0.01, trigger_on_release=False)
detail: When I ran the following code, shift+tabThis combination of Hotkeys is registered.
shift+tab
import keyboard def alt_handler(): print("Hotkey triggered!") keyboard.add_hotkey('shift+tab', alt_handler, suppress=True, timeout=0.01, trigger_on_release=False) keyboard.wait('esc')
I'll press the shift button alone, but there's a delay in the original function of this shift key from Windows.
alone
delay
This late performance can be seen in text selection using the Shift key.
Sorry, something went wrong.
I have the same problem. The key shift I detected was a delay in the original shift key function. Do you know who can help us? keyboard.add_hotkey('shift+a', alt_handler, suppress=True, trigger_on_release=True)
keyboard.add_hotkey('shift+a', alt_handler, suppress=True, trigger_on_release=True)
I'm reading this website. He's got something about suppression. Support for key suppression
No branches or pull requests
suppress=True will cause a 1-second delay when pressing Ctrl, ALT, and other keys separately, such as running the ALT key in games`````how to do?
The text was updated successfully, but these errors were encountered: