Re: gtk+ about dialog doesn't close

2007-06-02 Thread Yeti
On Sat, Jun 02, 2007 at 07:26:02AM +0200, John Zoidberg wrote: > I have a problem with the gtk about dialog: When I click on the Close button > it doesn't close. > There seems to be no event connected to the close button clicked signal. > And I can't add one either in Glade (v2 as well as v3). > >

Re: gtk+ about dialog doesn't close

2007-06-01 Thread Samuel Cormier-Iijima
Since GtkAboutDialog is a subclass of GtkDialog, it is intended to be used as a modal dialog. Hence, you would do something like: gtk_dialog_run(about_dialog); gtk_widget_hide(about_dialog); Also, see http://developer.gnome.org/doc/API/2.0/gtk/GtkAboutDialog.html#gtk-show-about-dialog Samuel O