aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-10-11 09:08:13 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2011-06-05 03:37:10 +0800
commitdff30b763b98a49579d0a6296961ceb91216e68e (patch)
tree42c16ef6f0a62f19483c500a7c68209f1979047f /embed
parent6395c6fc933ee70364f2f2269a0fbbe9391c92d6 (diff)
downloadgsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar.gz
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar.bz2
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar.lz
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar.xz
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.tar.zst
gsoc2013-epiphany-dff30b763b98a49579d0a6296961ceb91216e68e.zip
ephy-embed-single: set_network_status needs to notify
Otherwise ephy-window never finds out that the network-status has changed. Bug #624421
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-single.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index a214f82bd..846d72805 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -602,6 +602,8 @@ ephy_embed_single_set_network_status (EphyEmbedSingle *single,
{
if (status != single->priv->online)
single->priv->online = status;
+
+ g_object_notify (G_OBJECT (single), "network-status");
}
/**