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
https://github.com/SavinaRoja/PyUserInput/blob/master/pymouse/x11.py
def button_code_to_scroll_direction(button): # scrollup=4, scrolldown=5, scrollleft=6, scrollright=7 return { 4: (1, 0), 5: (-1, 0), 6: (0, 1), 7: (0, -1), }[button]
is this better? only asking cause the highlighting was off when i was looking at this code
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/SavinaRoja/PyUserInput/blob/master/pymouse/x11.py
is this better? only asking cause the highlighting was off when i was looking at this code
The text was updated successfully, but these errors were encountered: