diff --git a/thunar/thunar-path-entry.c b/thunar/thunar-path-entry.c
index ca7323414b646ac2d63fa19e29eb9a5ec0aa3b08..049e0ed2d18c3a36130445e1b49290ce108ad9fd 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 46d871550d40337490b0ee7a378d00f8ee002143..790982d4f2375725c3f64952c0c7fd3e61fd0516 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);