diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/ephy-tab.c | 3 |
2 files changed, 11 insertions, 0 deletions
@@ -1,5 +1,13 @@ 2007-07-25 Diego Escalante Urrelo <diegoe@gnome.org> + * src/ephy-tab.c: + + Update tab title when the statusbar text is updated, so we don't have + out of sync messages (like "Loading <page-you-were-before>"). Fixes + bug #318947. + +2007-07-25 Diego Escalante Urrelo <diegoe@gnome.org> + * src/ephy-notebook.c: Checks that if we are dragging an element of type diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 568a5ba3d..4e31dd573 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1723,8 +1723,11 @@ update_net_state_message (EphyTab *tab, const char *uri, EphyEmbedNetState flags else if (msg != NULL) { g_free (tab->priv->status_message); + g_free (tab->priv->loading_title); tab->priv->status_message = g_strdup_printf (msg, host); + tab->priv->loading_title = g_strdup_printf (msg, host); g_object_notify (G_OBJECT (tab), "message"); + g_object_notify (G_OBJECT (tab), "title"); } out: |