From bc838629d94868df9947c520cd12a2c2949ce8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?miKa=E3=81=B4=E3=82=87=E3=82=93?= Date: Fri, 20 Nov 2015 00:11:54 +0100 Subject: [PATCH] Pass screen coordinates on folder item drag events Thanks Lirusaito for guiding me while trying to find this. --- indra/newview/llfolderviewitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index 7bf80e021..1605f8174 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -768,7 +768,7 @@ BOOL LLFolderViewItem::handleHover( S32 x, S32 y, MASK mask ) // item. gFocusMgr.setKeyboardFocus(NULL); - return LLToolDragAndDrop::getInstance()->handleHover( x, y, mask ); + return LLToolDragAndDrop::getInstance()->handleHover( screen_x, screen_y, mask ); } } }