Last active
August 29, 2015 14:07
-
-
Save vijinho/d7b76af6a765eea0baf0 to your computer and use it in GitHub Desktop.
Debug Kivy Widgets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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