From 4eee87dd91ed05b2f636433d356b2450e1a535b1 Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Wed, 25 Jul 2007 21:04:10 +0000 Subject: Update tab title when the statusbar text is updated, so we don't have out 2007-07-25 Diego Escalante Urrelo * src/ephy-tab.c: Update tab title when the statusbar text is updated, so we don't have out of sync messages (like "Loading "). Fixes bug #318947. svn path=/trunk/; revision=7197 --- src/ephy-tab.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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: -- cgit v1.2.3