diff options
Diffstat (limited to 'src/pdm-dialog.c')
-rwxr-xr-x | src/pdm-dialog.c | 6 |
1 files changed, 5 insertions, 1 deletions
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 |