aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-history-window.c
diff options
context:
space:
mode:
authorDavid Bordoley <bordoley@msu.edu>2003-07-31 03:03:49 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2003-07-31 03:03:49 +0800
commit0e426261da73ee87fe8563859333c3553f753ffd (patch)
tree5aa99640378c86b90be2d1b7f662b41d9ff133e4 /src/ephy-history-window.c
parent140a336a5aad4e6f7b679cdeff73c12a71611dcd (diff)
downloadgsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar.gz
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar.bz2
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar.lz
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar.xz
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.tar.zst
gsoc2013-epiphany-0e426261da73ee87fe8563859333c3553f753ffd.zip
Always open bookmarks in new window/tab according to pref on activate.
2003-07-30 David Bordoley <bordoley@msu.edu> * src/ephy-history-window.c: (ephy_history_window_node_activated_cb): * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_node_activated_cb): Always open bookmarks in new window/tab according to pref on activate.
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r--src/ephy-history-window.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 6ef64dea8..03cc94467 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -608,17 +608,9 @@ ephy_history_window_node_activated_cb (GtkWidget *view,
g_return_if_fail (location != NULL);
window = EPHY_WINDOW (get_target_window (editor));
- if (window != NULL)
- {
- ephy_window_load_url (EPHY_WINDOW (window), location);
- gtk_window_present (GTK_WINDOW (window));
- }
- else
- {
- /* We have to create a browser window */
- ephy_shell_new_tab (ephy_shell, NULL, NULL, location,
- EPHY_NEW_TAB_IN_NEW_WINDOW);
- }
+
+ ephy_shell_new_tab (ephy_shell, NULL, NULL, location,
+ EPHY_NEW_TAB_OPEN_PAGE);
}
static void