diff options
-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); |