diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-07-31 20:14:24 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-08-01 13:24:14 +0300 | 
| commit | 06ce9ac80217623beae8498bb93bd73def7008aa (patch) | |
| tree | 432d72de8f2a8f433b8f46e418d3464eb0b063a2 | |
| parent | beb177bb23af4885b2a6f16798a62d1ca9ac0a02 (diff) | |
viewer#2157 Toolbar's drop position indicator does not appear
| -rw-r--r-- | indra/llui/lltoolbar.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp index aa48ae048f..5955a28fa3 100644 --- a/indra/llui/lltoolbar.cpp +++ b/indra/llui/lltoolbar.cpp @@ -1073,7 +1073,7 @@ bool LLToolBar::handleDragAndDrop(S32 x, S32 y, MASK mask, bool drop,              int orig_rank = getRankFromPosition(dragged_command);              mDragRank = getRankFromPosition(x, y);              // Don't DaD if we're dragging a command on itself -            mDragAndDropTarget = ((orig_rank != RANK_NONE) && ((mDragRank == orig_rank) || ((mDragRank - 1) == orig_rank))); +            mDragAndDropTarget = (orig_rank == RANK_NONE) || ((mDragRank != orig_rank) && ((mDragRank - 1) != orig_rank));              //LL_INFOS() << "Merov debug : DaD, rank = " << mDragRank << ", dragged uui = " << inv_item->getUUID() << LL_ENDL;              /* Do the following if you want to animate the button itself              LLCommandId dragged_command(inv_item->getUUID()); | 
