diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-12-11 22:13:46 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-12-11 22:13:46 +0200 |
commit | b2badcaf695304847312445d9b9184958d705fe1 (patch) | |
tree | 71e195418c3afe3409b16fb695cace668ce2f407 /indra/newview | |
parent | b6b861eaaf7a5c4a5bac6064c90fcee88f177dda (diff) |
Regression fix for major bug EXT-3135 "Crash after dragging LM from 'Inventory' accordion to fav bar".
- Disabled opening sidetray inventory panel on drag-n-drop operations with landmarks in sidetray places panel.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 52ebefabea..089f90fe2b 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2965,7 +2965,7 @@ BOOL LLFolderBridge::dragItemIntoFolder(LLInventoryItem* inv_item, // everything in the active window so that we don't follow // the selection to its new location (which is very // annoying). - LLInventoryPanel *active_panel = LLInventoryPanel::getActiveInventoryPanel(); + LLInventoryPanel *active_panel = LLInventoryPanel::getActiveInventoryPanel(FALSE); if (active_panel) { LLInventoryPanel* panel = dynamic_cast<LLInventoryPanel*>(mInventoryPanel.get()); |