diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/pdm-dialog.c | 6 |
2 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-10-04 Christian Persch <chpe@cvs.gnome.org> + * src/pdm-dialog.c: (pdm_dialog_init): + + Set ephy icon as window icon. + +2004-10-04 Christian Persch <chpe@cvs.gnome.org> + * src/prefs-dialog.c: (prefs_dialog_init): Same here. diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index 80169e311..e99a872bd 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -803,7 +803,7 @@ static void pdm_dialog_init (PdmDialog *dialog) { PdmActionInfo *cookies, *passwords; - GtkWidget *notebook; + GtkWidget *notebook, *window; dialog->priv = EPHY_PDM_DIALOG_GET_PRIVATE (dialog); @@ -816,6 +816,10 @@ pdm_dialog_init (PdmDialog *dialog) "pdm_dialog", NULL); + window = ephy_dialog_get_control (EPHY_DIALOG (dialog), + properties[PROP_WINDOW].id); + gtk_window_set_icon_name (GTK_WINDOW (window), "web-browser"); + /** * Group all Properties and Remove buttons in the same size group to * avoid the little jerk you get otherwise when switching pages because |