diff options
author | Merov Linden <merov@lindenlab.com> | 2011-10-19 14:11:34 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2011-10-19 14:11:34 -0700 |
commit | b477f3c9af39dd49fcdb88f330f60c8b166fa0e8 (patch) | |
tree | d04b72a8ce62dee897c626a3bc5374b67eb2649f /indra/newview/lltoolbarview.cpp | |
parent | b8e954f98d37cb8e045135dd6bbaab9fc4421529 (diff) | |
parent | 3e61b37258fc88916d45ee47a2a9fbb3baf934cf (diff) |
Pull from richard/viewer-experience-fui
Diffstat (limited to 'indra/newview/lltoolbarview.cpp')
-rw-r--r-- | indra/newview/lltoolbarview.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/lltoolbarview.cpp b/indra/newview/lltoolbarview.cpp index 21e682f072..c7c8268eb9 100644 --- a/indra/newview/lltoolbarview.cpp +++ b/indra/newview/lltoolbarview.cpp @@ -355,6 +355,12 @@ BOOL LLToolBarView::handleDragTool( S32 x, S32 y, const LLUUID& uuid, LLAssetTyp LLToolDragAndDrop::ESource src = LLToolDragAndDrop::SOURCE_VIEWER; LLUUID srcID; LLToolDragAndDrop::getInstance()->beginMultiDrag(types, cargo_ids, src, srcID); + + // Second, stop the command if it is in progress and requires stopping! + LLCommandId command_id = LLCommandId(uuid); + gToolBarView->mToolbarLeft->stopCommandInProgress(command_id); + gToolBarView->mToolbarRight->stopCommandInProgress(command_id); + gToolBarView->mToolbarBottom->stopCommandInProgress(command_id); // Second, check if the command is present in one of the 3 toolbars // If it is, store the command, the toolbar and the rank in the toolbar and |