diff options
author | Christian Persch <chpe@src.gnome.org> | 2004-03-22 19:38:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-22 19:38:56 +0800 |
commit | 639ab2b6e03e3f03c1c8f0c991487c86215658ea (patch) | |
tree | 855c1f4cee42f6702c7c44106c571d89545c9be3 | |
parent | abd1383731f534204451d7c6e0aa7c668f120101 (diff) | |
download | gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar.gz gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar.bz2 gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar.lz gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar.xz gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.tar.zst gsoc2013-epiphany-639ab2b6e03e3f03c1c8f0c991487c86215658ea.zip |
Set window icon. Fixes bug #137806.
* src/window-commands.c: (window_cmd_help_about):
Set window icon. Fixes bug #137806.
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
2 files changed, 16 insertions, 1 deletions
@@ -1,4 +1,17 @@ -2004-03-222 Guntupalli Karunakar <karunakar@freedomink.org> +2004-03-21 Christian Persch <chpe@cvs.gnome.org> + + * data/glade/prefs-dialog.glade: + + Fix "Add" button width in the prefs dialogue for some themes. + Fixes bug #137811. + +2004-03-21 Christian Persch <chpe@cvs.gnome.org> + + * src/window-commands.c: (window_cmd_help_about): + + Set window icon. Fixes bug #137806. + +2004-03-20 Guntupalli Karunakar <karunakar@freedomink.org> * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS. diff --git a/src/window-commands.c b/src/window-commands.c index 575c70406..2bd87ee54 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -957,6 +957,8 @@ window_cmd_help_about (GtkAction *action, strcmp (translator_credits, "translator-credits") != 0 ? translator_credits : NULL, logo); + gtk_window_set_icon (GTK_WINDOW (about), logo); + if (logo != NULL) { g_object_unref (logo); |