diff --git a/ChangeLog b/ChangeLog
index 0958476d01a0774f35f07e29424127d4e4f7ce87..3d9814ce04a5b2902f09cc7823a00d79cab498dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
 
+	* gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default
+	drag cursors.  (#319200, Federico Mena Quintero)
+
 	* gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): Handle
 	Shift-G to go to the previous match, like firefox.  (#320061, Christian 
 	Neumair)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 0958476d01a0774f35f07e29424127d4e4f7ce87..3d9814ce04a5b2902f09cc7823a00d79cab498dd 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
 
+	* gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default
+	drag cursors.  (#319200, Federico Mena Quintero)
+
 	* gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): Handle
 	Shift-G to go to the previous match, like firefox.  (#320061, Christian 
 	Neumair)
diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c
index 7f05cc69f399dd80489caa516b7d74cee4fce4b0..24b6f51211f0628cc8a3f761e2696e08125af1a9 100644
--- a/gtk/gtkdnd.c
+++ b/gtk/gtkdnd.c
@@ -610,7 +610,7 @@ gtk_drag_get_cursor (GdkDisplay        *display,
       if (!cursor_pixbuf)
 	{
 	  cursor_pixbuf = g_object_ref (drag_cursors[i].pixbuf);
-	  icon_anchor = GTK_ANCHOR_NORTH;
+	  icon_anchor = GTK_ANCHOR_NORTH_WEST;
 	  icon_x = icon_y = -2;
 	}
       else