-
Notifications
You must be signed in to change notification settings - Fork 242
Open
Description
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
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]
Metadata
Metadata
Assignees
Labels
No labels