aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-02 06:11:36 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-02 06:11:36 +0800
commit663002a25afbb001e630df7ee9d9ded660d7d24b (patch)
treea36d3e875cd0674799d760a692bdca4dd613673c /embed/downloader-view.c
parentb211f52a1547f70cd946f885aefec2eaa41794c7 (diff)
downloadgsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar.gz
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar.bz2
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar.lz
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar.xz
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.tar.zst
gsoc2013-epiphany-663002a25afbb001e630df7ee9d9ded660d7d24b.zip
Fix invisible status icon. Fixes bug #151501; patch approved by RT.
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.
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r--embed/downloader-view.c7
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);