From 04f94a98f25749cc17ab6f6a8b735fab4e549c75 Mon Sep 17 00:00:00 2001
From: Matthias Clasen <mclasen@redhat.com>
Date: Fri, 28 Oct 2005 17:06:43 +0000
Subject: [PATCH] Fix the anchor of the default drag cursors. (#319200,
 Federico Mena

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)
---
 ChangeLog          | 3 +++
 ChangeLog.pre-2-10 | 3 +++
 gtk/gtkdnd.c       | 2 +-
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 0958476d01..3d9814ce04 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 0958476d01..3d9814ce04 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 7f05cc69f3..24b6f51211 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
-- 
GitLab