From 1fccd1a006def2e88a4d58d4214cc919e21f785c Mon Sep 17 00:00:00 2001 From: Dave Camp Date: Wed, 2 Apr 2003 20:14:28 +0000 Subject: Only handle motion_notify_event for the bin window. 2003-04-02 Dave Camp * src/file-manager/fm-list-view.c (motion_notify_callback): Only handle motion_notify_event for the bin window. --- ChangeLog | 5 +++++ src/file-manager/fm-list-view.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7f044a178..d1c158c4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-04-02 Dave Camp + + * src/file-manager/fm-list-view.c (motion_notify_callback): Only + handle motion_notify_event for the bin window. + === nautilus 2.2.3.1 === 2003-03-31 Dave Camp diff --git a/src/file-manager/fm-list-view.c b/src/file-manager/fm-list-view.c index d9058020e..59d16a27d 100644 --- a/src/file-manager/fm-list-view.c +++ b/src/file-manager/fm-list-view.c @@ -321,6 +321,10 @@ motion_notify_callback (GtkWidget *widget, view = FM_LIST_VIEW (callback_data); + if (event->window != gtk_tree_view_get_bin_window (GTK_TREE_VIEW (widget))) { + return FALSE; + } + if (view->details->drag_button != 0) { if (gtk_drag_check_threshold (widget, view->details->drag_x, -- cgit v1.2.1