diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-16 23:01:32 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-16 23:01:32 +0800 |
commit | 433acf3896bfaf699788fda839017c325a3379f3 (patch) | |
tree | 8c08bc3e0fec9c4250e6761022116e0ec40ba732 /src | |
parent | dfe3d1432e54ba53f5a6a41aff8df4f5456a82a1 (diff) | |
download | gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar.gz gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar.bz2 gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar.lz gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar.xz gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.tar.zst gsoc2013-epiphany-433acf3896bfaf699788fda839017c325a3379f3.zip |
Fix URL dragging to other tabs.
2005-07-16 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (notebook_drag_data_received_cb):
Fix URL dragging to other tabs.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |