aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-01-26 07:34:37 +0800
committerChristian Persch <chpe@src.gnome.org>2006-01-26 07:34:37 +0800
commit941770f3933483d41177ed8072a24e4b1f90f8f6 (patch)
tree0399cf7c3b7744971313fdf034b0a8701622ba17
parent0e1613efe9cc6d8ed3acf56928c798e3d889f4f1 (diff)
downloadgsoc2013-epiphany-941770f3933483d41177ed8072a24e4b1f90f8f6.tar.gz
gsoc2013-epiphany-941770f3933483d41177ed8072a24e4b1f90f8f6.tar.zst
gsoc2013-epiphany-941770f3933483d41177ed8072a24e4b1f90f8f6.zip
Fix initial network status sync.
2006-01-26 Christian Persch <chpe@cvs.gnome.org> * src/ephy-shell.c: (impl_get_embed_single): Fix initial network status sync.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-shell.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 465901932..50b820562 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-26 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/ephy-shell.c: (impl_get_embed_single):
+
+ Fix initial network status sync.
+
2006-01-25 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor):
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 810f3ca8b..acf8cf42a 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -256,13 +256,13 @@ impl_get_embed_single (EphyEmbedShell *embed_shell)
G_CALLBACK (ephy_shell_add_sidebar_cb),
shell, G_CONNECT_AFTER);
+ priv->embed_single_connected = TRUE;
+
#ifdef ENABLE_NETWORK_MANAGER
/* Now we need the net monitor */
ephy_shell_get_net_monitor (shell);
ephy_shell_sync_network_status (priv->net_monitor, NULL, shell);
#endif
-
- priv->embed_single_connected = TRUE;
}
return embed_single;