diff options
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-splash.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4e80eaed65..b7a34a5964 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2001-01-12 Miguel de Icaza <miguel@gnu.org> + + * e-splash.c (e_splash_construct): Remove nice toplevel window. + 2001-01-12 Ettore Perazzoli <ettore@helixcode.com> * evolution-shell-component.c (corba_class_init): diff --git a/shell/e-splash.c b/shell/e-splash.c index 33f5412455..f8fe74c71d 100644 --- a/shell/e-splash.c +++ b/shell/e-splash.c @@ -317,7 +317,7 @@ e_splash_construct (ESplash *splash, gtk_signal_connect (GTK_OBJECT (splash), "button-press-event", GTK_SIGNAL_FUNC (button_press_event), splash); - gtk_object_set (GTK_OBJECT (splash), "type", GTK_WINDOW_TOPLEVEL, NULL); + gtk_object_set (GTK_OBJECT (splash), "type", GTK_WINDOW_POPUP, NULL); gtk_window_set_position (GTK_WINDOW (splash), GTK_WIN_POS_CENTER); gtk_window_set_policy (GTK_WINDOW (splash), FALSE, FALSE, FALSE); gtk_window_set_default_size (GTK_WINDOW (splash), image_width, image_height); |