diff options
author | Miguel de Icaza <miguel@gnu.org> | 2001-01-13 03:37:12 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2001-01-13 03:37:12 +0800 |
commit | b2438035651345b0f2e85c7107c97cab494c0c11 (patch) | |
tree | ca9a8d53a9d4d0ab5f7066a3b0449ab57e0199f2 | |
parent | 6d5287843b60a38adca3fc2521c14a7743b8b978 (diff) | |
download | gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar.gz gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar.bz2 gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar.lz gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar.xz gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.tar.zst gsoc2013-evolution-b2438035651345b0f2e85c7107c97cab494c0c11.zip |
Remove nice toplevel window.
2001-01-12 Miguel de Icaza <miguel@gnu.org>
* e-splash.c (e_splash_construct): Remove nice toplevel window.
svn path=/trunk/; revision=7454
-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); |