aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-06-04 00:48:27 +0800
committerChristian Persch <chpe@src.gnome.org>2003-06-04 00:48:27 +0800
commitbbefce85cb56466bf454c8bed271e0826025951b (patch)
tree9a5b030a70a412e8493515d5a172e252a6d8713d /src
parent562b2a516b1cd3afaf6ae0fe7afedd43d42e2fe5 (diff)
downloadgsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar.gz
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar.bz2
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar.lz
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar.xz
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.tar.zst
gsoc2013-epiphany-bbefce85cb56466bf454c8bed271e0826025951b.zip
Get rid of the leftovers of the jump-to-tab pref.
2003-06-02 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-prefs.h: * src/ephy-shell.c: (ephy_shell_new_tab): * src/ephy-notebook.c: (notebook_drag_data_received_cb): Get rid of the leftovers of the jump-to-tab pref.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-notebook.c5
-rw-r--r--src/ephy-shell.c2
2 files changed, 0 insertions, 7 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 2e8766683..4bee3f8e4 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -681,11 +681,6 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context,
EPHY_NEW_TAB_DONT_JUMP_TO);
}
- if (num == 0 && eel_gconf_get_boolean (CONF_TABS_TABBED_AUTOJUMP))
- {
- ephy_window_jump_to_tab (window, tab);
- }
-
g_free (url);
url = NULL;
l = l->next;
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index b2faa8cb3..fa566acad 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -484,8 +484,6 @@ ephy_shell_new_tab (EphyShell *shell,
if (flags & EPHY_NEW_TAB_IN_NEW_WINDOW) in_new_window = TRUE;
if (flags & EPHY_NEW_TAB_IN_EXISTING_WINDOW) in_new_window = FALSE;
- jump_to = eel_gconf_get_boolean (CONF_TABS_TABBED_AUTOJUMP);
-
if (flags & EPHY_NEW_TAB_JUMP) jump_to = TRUE;
if (flags & EPHY_NEW_TAB_DONT_JUMP_TO) jump_to = FALSE;