Skip to content

Instantly share code, notes, and snippets.

@redstoneleo
Last active February 10, 2020 04:40
Show Gist options
  • Save redstoneleo/8bbe391b428536e38e69fa7162df789b to your computer and use it in GitHub Desktop.
Save redstoneleo/8bbe391b428536e38e69fa7162df789b to your computer and use it in GitHub Desktop.
mouse.on_pressed
def on_pressed(callback, args=()):
""" Invokes `callback` with `args` when the left button is pressed. """
return on_button(callback, args, [LEFT], [DOWN])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment