aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-27 04:14:08 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-27 04:14:08 +0800
commit87f96121fc651fa1fafd05f9b48482d0f9e90ce8 (patch)
treeba9c180f875351fccbe289309e2ec9b8438edda3 /shell/main.c
parentddec7bf225b4bdfa0da7d5009210196867cbcff9 (diff)
downloadgsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar.gz
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar.bz2
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar.lz
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar.xz
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.tar.zst
gsoc2013-evolution-87f96121fc651fa1fafd05f9b48482d0f9e90ce8.zip
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
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c6
1 files changed, 3 insertions, 3 deletions
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. */