9 lines
288 B
Python
9 lines
288 B
Python
import gtk
|
|
|
|
from sugar.graphics import units
|
|
|
|
class FileChooserDialog(gtk.FileChooserDialog):
|
|
def __init__(self, title=None, parent=None,
|
|
action=gtk.FILE_CHOOSER_ACTION_OPEN, buttons=None):
|
|
gtk.FileChooserDialog.__init__(self, title, parent, action, buttons)
|