diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-05 19:34:04 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-05 19:34:04 +0300 |
commit | f7f24611c69d64934b4a815636bc4a948fe8ba52 (patch) | |
tree | 38e863314c1d4800758623ee3065a219de4852b6 /indra/newview/llpanelmaininventory.cpp | |
parent | c8fc414ebe3c44af36ae8f34d27758480ba73b1b (diff) |
MAINT-203 Fixed auto-scroll zones being uneven in inventory
Diffstat (limited to 'indra/newview/llpanelmaininventory.cpp')
-rw-r--r-- | indra/newview/llpanelmaininventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index dd75ae9c06..c34dd64cba 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -540,7 +540,7 @@ BOOL LLPanelMainInventory::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, { // Check to see if we are auto scrolling from the last frame LLInventoryPanel* panel = (LLInventoryPanel*)this->getActivePanel(); - BOOL needsToScroll = panel->getScrollableContainer()->autoScroll(x, y); + BOOL needsToScroll = panel->getScrollableContainer()->canAutoScroll(x, y); if(mFilterTabs) { if(needsToScroll) |