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
while True:
keyboard.add_hotkey('right alt', lambda: print("Right Alt pressed"))
keyboard.wait()
When running the above code snippet, the callback function is executed regardless of which alt (right or left) was pressed.
The expected behavior is to execute the callback function only when the right alt is pressed, and to ignore left alt key presses.
When running the above code snippet, the callback function is executed regardless of which alt (right or left) was pressed.
The expected behavior is to execute the callback function only when the right alt is pressed, and to ignore left alt key presses.
Similar to issue #617
The text was updated successfully, but these errors were encountered: