aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/widgets/ephy-location-entry.c10
2 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a453ad4a..e3e578d32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-15 Tommi Komulainen <tommi.komulainen@iki.fi>
+
+ * lib/widgets/ephy-location-entry.c (update_favicon): Replace
+ 'stock-new' fallback favicon with more semantically correct
+ 'text-html' It also looks better with Tango icon theme. Bug #337140
+
2006-04-13 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-main.c:
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index ac21374ec..c964a46fe 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -337,9 +337,13 @@ update_favicon (EphyLocationEntry *entry)
}
else
{
- gtk_image_set_from_stock (image,
- GTK_STOCK_NEW,
- GTK_ICON_SIZE_MENU);
+ /* Here we could consider using fallback favicon that matches
+ * the page MIME type, though text/html should be good enough
+ * most of the time. See #337140
+ */
+ gtk_image_set_from_icon_name (image,
+ "text-html",
+ GTK_ICON_SIZE_MENU);
}
}