Created
April 21, 2013 08:18
-
-
Save ihaque/5428878 to your computer and use it in GitHub Desktop.
Demo program showing broken FileChooserIconView
This file contains hidden or 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
import kivy | |
kivy.require('1.6.0') | |
from kivy.app import App | |
from kivy.uix.filechooser import FileChooserIconView | |
class DemoApp(App): | |
def build(self): | |
return FileChooserIconView() | |
if __name__ == '__main__': | |
DemoApp().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment