Skip to content

Instantly share code, notes, and snippets.

@vijinho
Last active August 29, 2015 14:07
Show Gist options
  • Save vijinho/d7b76af6a765eea0baf0 to your computer and use it in GitHub Desktop.
Save vijinho/d7b76af6a765eea0baf0 to your computer and use it in GitHub Desktop.
Debug Kivy Widgets
# DEBUG ALL WIDGETS
<Widget>:
canvas.after:
Line:
rectangle: self.x+1, self.y+1, self.width-1, self.height-1
dash_offset: 5
dash_length: 3
# DEBUG A SINGLE WIDGET
canvas.after:
Color:
rgba: 1, 0, 0, 0.5
Line:
rectangle: self.x+1, self.y+1, self.width-1, self.height-1
Color:
rgba: 0, 0, 1, 0.3
Rectangle:
pos: self.pos
size: self.size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment