aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorMario Sanchez Prada <msanchez@igalia.com>2010-04-21 04:15:25 +0800
committerXan Lopez <xan@gnome.org>2010-04-22 00:48:28 +0800
commitbe3c8f50cefef8ea3f34854c0254b3bdaa851958 (patch)
treef59b6d8174fa5ad20d3cd83076ab1c3bbbe1c4c2 /src/ephy-shell.c
parent0739487127652cf544257e7a0d48caa580f98ad2 (diff)
downloadgsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar.gz
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar.bz2
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar.lz
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar.xz
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.tar.zst
gsoc2013-epiphany-be3c8f50cefef8ea3f34854c0254b3bdaa851958.zip
Allow not copying history when creating a new embed
Just added a new flag and check it before copying the history Bug #611400 Signed-off-by: Xan Lopez <xan@gnome.org>
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index e276731a8..fc4caf9d1 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -435,6 +435,7 @@ ephy_shell_new_tab_full (EphyShell *shell,
gboolean open_page = FALSE;
gboolean jump_to;
gboolean active_is_blank = FALSE;
+ gboolean copy_history = TRUE;
GtkWidget *nb;
int position = -1;
gboolean is_empty = FALSE;
@@ -443,6 +444,7 @@ ephy_shell_new_tab_full (EphyShell *shell,
if (flags & EPHY_NEW_TAB_OPEN_PAGE) open_page = TRUE;
if (flags & EPHY_NEW_TAB_IN_NEW_WINDOW) in_new_window = TRUE;
if (flags & EPHY_NEW_TAB_IN_EXISTING_WINDOW) in_new_window = FALSE;
+ if (flags & EPHY_NEW_TAB_DONT_COPY_HISTORY) copy_history = FALSE;
in_new_window = in_new_window && !eel_gconf_get_boolean (CONF_LOCKDOWN_FULLSCREEN);
g_return_val_if_fail (open_page == (gboolean)(request != NULL), NULL);
@@ -493,11 +495,11 @@ ephy_shell_new_tab_full (EphyShell *shell,
ephy_embed_container_add_child (EPHY_EMBED_CONTAINER (window), embed, position, jump_to);
}
- if (previous_embed != NULL)
- {
+ if (copy_history && previous_embed != NULL)
+ {
ephy_web_view_copy_back_history (ephy_embed_get_web_view (previous_embed),
ephy_embed_get_web_view (embed));
- }
+ }
ephy_gui_window_update_user_time (GTK_WIDGET (window), user_time);