From 8fbbb83346aa75f49f710e5670fee356dd9a5430 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Oct 2005 17:08:05 +0000 Subject: [PATCH] Fix the anchor of the default drag cursors. (#319200, Federico Mena Quintero) --- ChangeLog | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ gtk/gtkdnd.c | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a18f1710cc..52ec7a1b45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2005-10-28 Matthias Clasen + * 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) + * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Add the little stars. (#319985, Bastien Nocera) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a18f1710cc..52ec7a1b45 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,12 @@ 2005-10-28 Matthias Clasen + * 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) + * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Add the little stars. (#319985, Bastien Nocera) diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index 2c84fa43b4..4beb3db7ad 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -609,7 +609,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