aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/em-folder-tree.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index f488f87e12..688ddebfbb 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2004-03-11 Not Zed <NotZed@Ximian.com>
+ * em-folder-tree.c (tree_drag_motion): make dnd look funny for
+ joe. #55246.
+
* mail-component.c: change stores hash to point to a structure, in
which we maintain the vtrash and vjunk folders for the entirety of
the session. memory use be damned i guess. #55417 and partially
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index e78491ff6d..6699a004a9 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -1238,7 +1238,7 @@ tree_drag_motion (GtkWidget *widget, GdkDragContext *context, int x, int y, guin
action = context->suggested_action;
if (context->actions & GDK_ACTION_MOVE)
action = GDK_ACTION_MOVE;
- gtk_tree_view_set_drag_dest_row(priv->treeview, path, GTK_TREE_VIEW_DROP_AFTER);
+ gtk_tree_view_set_drag_dest_row(priv->treeview, path, GTK_TREE_VIEW_DROP_INTO_OR_AFTER);
break;
case DND_DROP_TYPE_UID_LIST:
action = context->suggested_action;