diff options
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r-- | embed/downloader-view.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c index e04114b13..fd6611716 100644 --- a/embed/downloader-view.c +++ b/embed/downloader-view.c @@ -174,8 +174,11 @@ status_icon_activated (EggStatusIcon *icon, DownloaderView *dv) static void show_status_icon (DownloaderView *dv) { - dv->priv->status_icon = - egg_status_icon_new_from_stock (EPHY_STOCK_DOWNLOAD); + GdkPixbuf *pixbuf; + + pixbuf = gdk_pixbuf_new_from_file (ephy_file ("epiphany-download.png"), NULL); + dv->priv->status_icon = egg_status_icon_new_from_pixbuf (pixbuf); + g_object_unref (pixbuf); g_signal_connect (dv->priv->status_icon, "activate", G_CALLBACK (status_icon_activated), dv); |