diff --git a/plug-ins/pygimp/gimpfu.py b/plug-ins/pygimp/gimpfu.py index 3be874de057e6afbbc9d711877c8cfa5d90d2d65..13a95a7f62a32e5dd6d0078d7d98c9e856cfb7ee 100644 --- a/plug-ins/pygimp/gimpfu.py +++ b/plug-ins/pygimp/gimpfu.py @@ -606,6 +606,9 @@ def _interact(proc_name, start_params): image.set_from_stock(gtk.STOCK_FILE, gtk.ICON_SIZE_BUTTON) self.button = gtk.Button() self.button.set_image(image) + self.expander = gtk.Expander() + self.expander.add(self.button) + self.expander.set_expanded(False) box.pack_start(self.entry) box.pack_start(self.button) self.button.connect("clicked", self.pick_file) @@ -613,6 +616,7 @@ def _interact(proc_name, start_params): self.entry.set_text(default) def show(self): + self.expander.show() super(FilenameSelector, self).show() self.button.show() self.entry.show()