diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-14 21:41:54 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-14 21:41:54 +0800 |
commit | 4a0f71e24f7df2fe66a433416eb276d9b60992c7 (patch) | |
tree | 54a4096de15324fed1abe8148990a9049bb33041 | |
parent | 990372e738219a8effebe2eb41e5ffe26b931fa7 (diff) | |
download | gsoc2013-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
-rw-r--r-- | src/window-commands.c | 3 |
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 |