diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-06-04 23:27:13 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-04 23:27:13 +0800 |
commit | 96b34afe3a6bffb9cb7a6671403de31644688cce (patch) | |
tree | 19394a0f2cbac65bfb8d8da8544199f3604fcec8 /src/ephy-notebook.c | |
parent | 29bbfe00469fe536bbf0f1025cde834cec3bec0b (diff) | |
download | gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar.gz gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar.bz2 gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar.lz gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar.xz gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.tar.zst gsoc2013-epiphany-96b34afe3a6bffb9cb7a6671403de31644688cce.zip |
Make sure to rebuild on add bookmark and on topic removal. Update on idle,
2003-06-04 Marco Pesenti Gritti <marco@it.gnome.org>
* src/bookmarks/ephy-bookmarks-menu.c:
(ephy_bookmarks_menu_rebuild), (do_updates),
(bookmarks_tree_changed_cb), (ephy_bookmarks_menu_init):
* src/bookmarks/ephy-bookmarks.c: (bookmarks_changed_cb),
(topics_removed_cb), (ephy_bookmarks_add):
Make sure to rebuild on add bookmark and on topic removal.
Update on idle, so things like importing bookmarks doesnt
take two days.
* src/ephy-notebook.c: (notebook_drag_data_received_cb):
* src/ephy-shell.c: (ephy_init_services), (load_homepage),
(ephy_shell_new_tab):
* src/ephy-shell.h:
* src/ephy-window.c: (setup_window):
* src/session.c: (parse_embed):
Drop NOT_JUMP_TO flag, we dont have a pref anymore.
On new page instead of really clone the page, just clone
the url (put it in the address entry). So if the user need it
it's easy to load, but there are not the inacceptable slow
downs of real cloning. Let's see how this works ...
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 4bee3f8e4..e360b8bd9 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -677,8 +677,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context, tab, url, EPHY_NEW_TAB_OPEN_PAGE | EPHY_NEW_TAB_IN_EXISTING_WINDOW | - EPHY_NEW_TAB_APPEND_LAST | - EPHY_NEW_TAB_DONT_JUMP_TO); + EPHY_NEW_TAB_APPEND_LAST); } g_free (url); |