aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--embed/downloader-view.c7
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b692b5255..4eb7de391 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-09-02 Christian Persch <chpe@cvs.gnome.org>
+
+ * embed/downloader-view.c: (show_status_icon):
+
+ Fix invisible status icon. Fixes bug #151501;
+ patch approved by RT.
+
2004-08-30 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
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);