aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-node-view.c
diff options
context:
space:
mode:
authorJorn Baayen <jbaayen@gnome.org>2005-01-14 08:58:26 +0800
committerJorn Baayen <jbaayen@src.gnome.org>2005-01-14 08:58:26 +0800
commit1853f8251a60b50a3719b147571aaac88df8a1eb (patch)
tree9cc8837f0525a1cbac38aed2149cb7f70a5c192a /lib/widgets/ephy-node-view.c
parentb79a2ee8d325de52aa792123256a9d70a1ef4ee9 (diff)
downloadgsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar.gz
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar.bz2
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar.lz
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar.xz
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.tar.zst
gsoc2013-epiphany-1853f8251a60b50a3719b147571aaac88df8a1eb.zip
Add GDK_ACTION_ASK, and prefer _NETSCAPE_URL over uri-list drag types.
2005-01-14 Jorn Baayen <jbaayen@gnome.org> * lib/widgets/ephy-location-entry.c: (ephy_location_entry_construct_contents): * lib/widgets/ephy-node-view.c: (motion_notify_cb): * src/bookmarks/ephy-bookmark-action.c: (drag_motion_cb): * src/bookmarks/ephy-bookmarks-editor.c: * src/ephy-history-window.c: Add GDK_ACTION_ASK, and prefer _NETSCAPE_URL over uri-list drag types. This is to match the new Nautilus _NETSCAPE_URL DnD behaviour. Fixes #163937.
Diffstat (limited to 'lib/widgets/ephy-node-view.c')
-rw-r--r--lib/widgets/ephy-node-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c
index b72c6fcb4..5f01667d7 100644
--- a/lib/widgets/ephy-node-view.c
+++ b/lib/widgets/ephy-node-view.c
@@ -738,7 +738,7 @@ motion_notify_cb (GtkWidget *widget,
{
context = gtk_drag_begin
(widget, view->priv->source_target_list,
- GDK_ACTION_COPY,
+ GDK_ACTION_ASK | GDK_ACTION_COPY | GDK_ACTION_LINK,
view->priv->drag_button,
(GdkEvent*)event);