[pygtk] Non-modal dialog?

2013-05-20 Thread Skip Montanaro
If I want a dialog to be non-modal, I can't use its run() method, is that true? I have a dialog which is defined in Glade to be non-modal, but calling its run() method sure makes it seem modal to me. Thx, Skip ___ pygtk mailing list pygtk@daa.com.au

Re: [pygtk] Non-modal dialog?

2013-05-20 Thread Marco Antonio Islas Cruz
Hi, Using the run method makes it block the program flow, if you want a dialog to be non-modal, just use the show method (at the end the Dialog is a subclass of gtk.Window). Cheers. On May 20, 2013, at 2:51 PM, Skip Montanaro s...@pobox.com wrote: If I want a dialog to be non-modal, I can't