Skip to content

Instantly share code, notes, and snippets.

@ihaque
Created April 21, 2013 08:18
Show Gist options
  • Save ihaque/5428878 to your computer and use it in GitHub Desktop.
Save ihaque/5428878 to your computer and use it in GitHub Desktop.
Demo program showing broken FileChooserIconView
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