diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -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. |