diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index c19d096576..3494c7f34d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 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 label to be empty. [#12553] diff --git a/shell/main.c b/shell/main.c index 75b5f1490b..030416acb8 100644 --- a/shell/main.c +++ b/shell/main.c @@ -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. */ |