diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-21 22:48:08 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-21 22:48:08 +0800 |
commit | cd1ef6be6d77640854d0b4f623292e03122f1262 (patch) | |
tree | aa2fe594d03ae4282633881f515109299beec3d7 /shell/e-splash.c | |
parent | 06cb9c4e9564a525953a2e8a9fc79a7b95fda634 (diff) | |
download | gsoc2013-evolution-cd1ef6be6d77640854d0b4f623292e03122f1262.tar.gz gsoc2013-evolution-cd1ef6be6d77640854d0b4f623292e03122f1262.tar.zst gsoc2013-evolution-cd1ef6be6d77640854d0b4f623292e03122f1262.zip |
Set the wmclass to "evolution-splash" so sawfish knows it's not the same
* e-splash.c (e_splash_construct): Set the wmclass to
"evolution-splash" so sawfish knows it's not the same kind of
window as the main window.
svn path=/trunk/; revision=16222
Diffstat (limited to 'shell/e-splash.c')
-rw-r--r-- | shell/e-splash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-splash.c b/shell/e-splash.c index f72ea77b12..90682e90af 100644 --- a/shell/e-splash.c +++ b/shell/e-splash.c @@ -332,6 +332,7 @@ e_splash_construct (ESplash *splash, 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); + gtk_window_set_wmclass (GTK_WINDOW (splash), "evolution-splash", "Evolution"); gnome_window_icon_set_from_file (GTK_WINDOW (splash), EVOLUTION_DATADIR "/pixmaps/evolution.png"); gtk_window_set_title (GTK_WINDOW (splash), "Ximian Evolution"); |