diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2004-12-30 Christian Persch <chpe@cvs.gnome.org> + + * src/window-commands.c: (window_cmd_file_send_to): + + Use gnome_vfs_url_show() for Send To, not ephy_embed_load_url() which + shows that annoying confirmation dialogue. Fixes bug #162532. + 2004-12-28 Christian Perschristian Persch <chpe@cvs.gnome.org> * src/ephy-extensions-manager.c: (sync_loaded_extensions): diff --git a/src/window-commands.c b/src/window-commands.c index 09b31e661..69e52f89b 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -174,7 +174,7 @@ window_cmd_file_send_to (GtkAction *action, "?Subject=", title, "&Body=", location, NULL); - ephy_embed_load_url (embed, url); + gnome_vfs_url_show (url); g_free (title); g_free (location); |