diff options
| author | Richard Nelson <richard@lindenlab.com> | 2011-08-17 16:05:31 -0700 | 
|---|---|---|
| committer | Richard Nelson <richard@lindenlab.com> | 2011-08-17 16:05:31 -0700 | 
| commit | e8448d47138929bf30ae20f89f9d33fc07fb9dbb (patch) | |
| tree | 4d387e9953ab909aff69cca8f2e636ad4558425c | |
| parent | 9944127a391fd15a1a0b0d30d736f2cec105039c (diff) | |
EXP-1099 FIX Cannot drag item on to empty space in outbox folder
| -rw-r--r-- | indra/newview/llfolderview.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index 6461a5525e..0751378428 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -1914,7 +1914,7 @@ BOOL LLFolderView::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,  	// by the folder which is the hierarchy root.  	if (!handled && getListener()->getUUID().notNull())  	{ -		LLFolderViewFolder::handleDragAndDrop(x, y, mask, drop, cargo_type, cargo_data, accept, tooltip_msg); +		handled = LLFolderViewFolder::handleDragAndDrop(x, y, mask, drop, cargo_type, cargo_data, accept, tooltip_msg);  	}  	if (handled)  | 
