Use gtk_widget_show_now() so the stupid dialog hopefully displays all the

* main.c (quit_box_new): Use gtk_widget_show_now() so the stupid
dialog hopefully displays all the time.

svn path=/trunk/; revision=14166
This commit is contained in:
Ettore Perazzoli
2001-10-26 20:14:08 +00:00
parent ddec7bf225
commit 87f96121fc
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-10-26 Ettore Perazzoli <ettore@ximian.com>
* main.c (quit_box_new): Use gtk_widget_show_now() so the stupid
dialog hopefully displays all the time.
2001-10-26 Ettore Perazzoli <ettore@ximian.com>
* e-shell-view.c (set_current_notebook_page): Clear the folder bar

View File

@ -92,9 +92,9 @@ quit_box_new (void)
gtk_container_add (GTK_CONTAINER (frame), label);
gtk_widget_show (frame);
gtk_widget_show (label);
gtk_widget_show (window);
gtk_widget_show_now (frame);
gtk_widget_show_now (label);
gtk_widget_show_now (window);
/* For some reason, the window fails to update without this
sometimes. */