aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-commands.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-14 21:41:54 +0800
committerXan Lopez <xan@igalia.com>2012-03-14 21:41:54 +0800
commit4a0f71e24f7df2fe66a433416eb276d9b60992c7 (patch)
tree54a4096de15324fed1abe8148990a9049bb33041 /src/window-commands.c
parent990372e738219a8effebe2eb41e5ffe26b931fa7 (diff)
downloadgsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar.gz
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar.bz2
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar.lz
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar.xz
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.tar.zst
gsoc2013-epiphany-4a0f71e24f7df2fe66a433416eb276d9b60992c7.zip
window-commands: forcing offline mode has been a no-op for a while
Diffstat (limited to 'src/window-commands.c')
-rw-r--r--src/window-commands.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window-commands.c b/src/window-commands.c
index b493a397c..197d85f8d 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -616,12 +616,15 @@ void
window_cmd_file_work_offline (GtkAction *action,
EphyWindow *window)
{
+ /* TODO: WebKitGTK+ does not currently support offline status. */
+#if 0
EphyEmbedSingle *single;
gboolean offline;
single = EPHY_EMBED_SINGLE (ephy_embed_shell_get_embed_single (embed_shell));
offline = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
ephy_embed_single_set_network_status (single, !offline);
+#endif
}
void