diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-07-26 05:04:10 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-07-26 05:04:10 +0800 |
commit | 4eee87dd91ed05b2f636433d356b2450e1a535b1 (patch) | |
tree | 23270750d880983d1ef31de37002d63a06eebdd8 /src/ephy-tab.c | |
parent | 0217086af0c7ec95f972fe3a8a922cf245001fd0 (diff) | |
download | gsoc2013-epiphany-4eee87dd91ed05b2f636433d356b2450e1a535b1.tar.gz gsoc2013-epiphany-4eee87dd91ed05b2f636433d356b2450e1a535b1.tar.zst gsoc2013-epiphany-4eee87dd91ed05b2f636433d356b2450e1a535b1.zip |
Update tab title when the statusbar text is updated, so we don't have out
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.
svn path=/trunk/; revision=7197
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 3 |
1 files changed, 3 insertions, 0 deletions
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: |