From d6ff6068e1ee61ac3de1cf157e74284f4f8d6e54 Mon Sep 17 00:00:00 2001 From: Andre Miranda <andreldm@xfce.org> Date: Sat, 2 Jun 2018 13:35:25 -0300 Subject: [PATCH] Replace gtk_drag_begin --- thunar/thunar-path-entry.c | 6 +++++- thunar/thunar-standard-view.c | 7 ++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/thunar/thunar-path-entry.c b/thunar/thunar-path-entry.c index ca7323414..049e0ed2d 100644 --- a/thunar/thunar-path-entry.c +++ b/thunar/thunar-path-entry.c @@ -435,7 +435,11 @@ thunar_path_entry_motion_notify_event (GtkWidget *widget, { /* create the drag context */ target_list = gtk_target_list_new (drag_targets, G_N_ELEMENTS (drag_targets)); - context = gtk_drag_begin (widget, target_list, GDK_ACTION_COPY | GDK_ACTION_LINK, path_entry->drag_button, (GdkEvent *) event); + context = gtk_drag_begin_with_coordinates (widget, target_list, + GDK_ACTION_COPY | + GDK_ACTION_LINK, + path_entry->drag_button, + (GdkEvent *) event, -1, -1); gtk_target_list_unref (target_list); /* setup the drag icon (atleast 24px) */ diff --git a/thunar/thunar-standard-view.c b/thunar/thunar-standard-view.c index 46d871550..790982d4f 100644 --- a/thunar/thunar-standard-view.c +++ b/thunar/thunar-standard-view.c @@ -3079,7 +3079,12 @@ thunar_standard_view_motion_notify_event (GtkWidget *view, /* allocate the drag context (preferred action is to ask the user) */ target_list = gtk_target_list_new (drag_targets, G_N_ELEMENTS (drag_targets)); - context = gtk_drag_begin (view, target_list, GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK | GDK_ACTION_ASK, 3, (GdkEvent *) event); + context = gtk_drag_begin_with_coordinates (view, target_list, + GDK_ACTION_COPY | + GDK_ACTION_MOVE | + GDK_ACTION_LINK | + GDK_ACTION_ASK, + 3, (GdkEvent *) event, -1, -1); /* FIXME gdk_drag_context_set_suggested_action (context, GDK_ACTION_ASK); -- GitLab