aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/widgets/ephy-location-entry.c4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ec4596376..66d919fae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-07-31 Christian Persch <chpe@cvs.gnome.org>
+ * lib/widgets/ephy-location-entry.c:
+
+ Fix location entry favicon updating.
+
+2005-07-31 Christian Persch <chpe@cvs.gnome.org>
+
* src/ephy-window.c:
Tiny string fix. Fixes bug #167448.
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index 8d04209d7..c9c43eada 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -799,11 +799,13 @@ ephy_location_entry_set_location (EphyLocationEntry *entry,
text = "";
}
+ /* First record the new hash, then update the entry text */
+ priv->hash = g_str_hash (address);
+
priv->user_changed = FALSE;
gtk_entry_set_text (GTK_ENTRY (priv->entry), text);
priv->user_changed = TRUE;
- priv->hash = g_str_hash (address);
update_favicon (entry);
/* Now restore the selection.