summaryrefslogtreecommitdiff
path: root/gtk/gtkdnd.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-10-28 17:06:43 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-10-28 17:06:43 +0000
commit04f94a98f25749cc17ab6f6a8b735fab4e549c75 (patch)
tree0c510f32db7573894d7c7b920029e2f96011940a /gtk/gtkdnd.c
parent96335d43266282e22786afae23f9a9524b41210e (diff)
downloadgtk+-04f94a98f25749cc17ab6f6a8b735fab4e549c75.tar.gz
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)
Diffstat (limited to 'gtk/gtkdnd.c')
-rw-r--r--gtk/gtkdnd.c2
1 files changed, 1 insertions, 1 deletions
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