diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-07-16 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-notebook.c: (notebook_drag_data_received_cb): + + Fix URL dragging to other tabs. + 2005-07-13 Christian Persch <chpe@cvs.gnome.org> * data/mime-types-permissions.xml: diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 82e13203d..6ca48217c 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -725,7 +725,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context, char **split; /* URL_TYPE has format: url \n title */ - split = g_strsplit ((const gchar *)selection_data->data, "\n", 1); + split = g_strsplit ((const gchar *)selection_data->data, "\n", 2); if (split != NULL && split[0] != NULL && split[0][0] != '\0') { ephy_link_open (EPHY_LINK (notebook), split[0], tab, |