[pygtk] GTK 2.4/GNOME 2.6 support

2004-01-27 Thread Don Allingham
Are there plans to have GNOME 2.6/GTK 2.4 support in time for the GNOME 2.6 release? It would be nice to have access to the new file selector and the treeview enhancements. Don -- Don Allingham <[EMAIL PROTECTED]> GRAMPS - Open Source Genealogy ___ pyg

[pygtk] glade & DrawingArea width limit

2004-01-27 Thread Luc Lefebvre
Hi, Whenever I try to set a DrawingArea widget width > 1, glade reverts the value to 1. Oddly enough when I do drawingarea.set_size_request(width,height) it will accept the value but then the drawing appears to go wonky. Is there a limit to the width that one can assign to a DrawingAr

Re: [pygtk] gtk.FileSelection question

2004-01-27 Thread Toon Verstraelen
Try something like: popup=gtk.FileSelection('title') # customize here popup.show_all() popup.complete('*.txt') Note you have to put the complete() after the show_all(). If you put it before, then you'll need to hit 'tab' to get the same effect. Hi Chriss, Thanks for your reply. A