Skip to content

Instantly share code, notes, and snippets.

@inclement
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save inclement/10f061fd70042d916231 to your computer and use it in GitHub Desktop.

Select an option

Save inclement/10f061fd70042d916231 to your computer and use it in GitHub Desktop.
class CollisionBehaviour(object):
def on_touch_down(self, touch):
if self.collide_point(*touch.pos):
return super(CollisionBehaviour, self).on_touch_down(touch)
return False
# ...then...
class YourWidget(CollisionBehaviour, Widget):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment